skov-example-projects/helloworld-cpp-cmake/CMakeLists.txt

14 lines
229 B
CMake
Raw Normal View History

2024-08-02 14:41:53 +01:00
2024-08-07 09:16:49 +01:00
cmake_minimum_required(VERSION 3.22)
2024-08-02 14:41:53 +01:00
project(MyProject VERSION 1.0.0 LANGUAGES C CXX)
set(CMAKE_EXPORT_COMPILE_COMMANDS true)
add_executable(
helloworld-cpp-cmake
src/main.cpp
)
install(TARGETS helloworld-cpp-cmake)