Initial commit

This commit is contained in:
2022-11-19 10:21:39 +03:00
commit 0dd1158b3d
7 changed files with 1034 additions and 0 deletions

9
CMakeLists.txt Normal file
View File

@@ -0,0 +1,9 @@
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)
add_executable(remote_listener remote_listener.cpp)