8 lines
135 B
CMake
8 lines
135 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(vector)
|
|
|
|
add_executable(vector main.cpp)
|
|
|
|
install(TARGETS vector RUNTIME DESTINATION bin)
|