bonfire/packages/example/CMakeLists.txt

11 lines
217 B
CMake
Raw Normal View History

2023-12-19 11:52:26 +05:00
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
)