Files
nixpkgs/pkgs/by-name/he/hello-cpp/src/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
120 B
CMake
Raw Normal View History

2025-10-09 14:15:47 +02:00
cmake_minimum_required(VERSION 3.10)
project(hello-cpp)
add_executable(hello-cpp main.cpp)
install(TARGETS hello-cpp)