7 lines
129 B
CMake
7 lines
129 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(test)
|
|
|
|
add_executable(test main.cpp)
|
|
|
|
install(TARGETS test RUNTIME DESTINATION bin)
|