mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
9 lines
219 B
CMake
9 lines
219 B
CMake
project(developerRobot)
|
|
|
|
include(CompileWarnings)
|
|
|
|
file(GLOB developerRobotCpp_src src/main/native/cpp/*.cpp)
|
|
|
|
add_executable(developerRobotCpp ${developerRobotCpp_src})
|
|
target_link_libraries(developerRobotCpp wpilibc)
|