11 lines
301 B
CMake
11 lines
301 B
CMake
cmake_minimum_required(VERSION 3.21)
|
|
project(sdp_sheduler C CXX)
|
|
|
|
set(CMAKE_C_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
add_executable(sdp_sheduler scheduler.c emulator.cpp emulator.h robot.cpp robot.h utils.c utils.h)
|
|
|
|
add_executable(remote_listener remote_listener.cpp)
|
|
add_definitions(-DEMULATOR=1)
|