You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
robomaster-sdk/CMakeLists.txt

42 lines
664 B
CMake

2 years ago
cmake_minimum_required(VERSION 3.15)
project (
RoboMasterSDK
VERSION 2.0.0
2 years ago
LANGUAGES C
)
set_property(GLOBAL PROPERTY C_STANDARD 17)
set_property(GLOBAL PROPERTY CXX_STANDARD 17)
add_compile_options(-Wall)
add_library(robomaster
src/message.c
src/modules/sdk.c
src/modules/chassis.c
src/modules/gimbal.c
src/connection.c
2 years ago
src/robomaster.c
src/robo.c
2 years ago
)
target_include_directories(robomaster
PRIVATE
2 years ago
src
PUBLIC
include
2 years ago
)
2 years ago
find_package(SDL2)
if(SDL2_FOUND)
add_executable(robomasterapp
src/sdl.c
)
target_link_libraries(robomasterapp
robomaster
SDL2::SDL2-static
2 years ago
)
endif()