7 lines
149 B
CMake
7 lines
149 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(arbitrateor)
|
|
|
|
add_executable(arbitrateor main.cpp)
|
|
|
|
install(TARGETS arbitrateor RUNTIME DESTINATION bin)
|