Vector/CMakeLists.txt

8 lines
135 B
CMake
Raw Normal View History

2024-07-07 13:06:04 +02:00
cmake_minimum_required(VERSION 3.0)
project(vector)
add_executable(vector main.cpp)
install(TARGETS vector RUNTIME DESTINATION bin)