7 lines
120 B
CMake
7 lines
120 B
CMake
|
|
cmake_minimum_required(VERSION 3.10)
|
||
|
|
project(hello-cpp)
|
||
|
|
|
||
|
|
add_executable(hello-cpp main.cpp)
|
||
|
|
|
||
|
|
install(TARGETS hello-cpp)
|