bonfire/packages/example/CMakeLists.txt
2023-12-19 11:52:26 +05:00

11 lines
217 B
CMake

cmake_minimum_required(VERSION 3.16)
project(hello-nix LANGUAGES CXX)
add_executable(hello-nix source/example.cpp)
install(
TARGETS hello-nix
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT runtime
)