This repository has been archived on 2024-09-18. You can view files and clone it, but cannot push or open issues or pull requests.
sdp-scheduler/CMakeLists.txt

11 lines
293 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.h)
add_executable(remote_listener remote_listener.cpp)
add_definitions(-DEMULATOR=1)