mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
9 lines
184 B
CMake
9 lines
184 B
CMake
project(myRobot)
|
|
|
|
include(CompileWarnings)
|
|
|
|
file(GLOB myRobotCpp_src src/main/native/cpp/*.cpp)
|
|
|
|
add_executable(myRobotCpp ${myRobotCpp_src})
|
|
target_link_libraries(myRobotCpp wpilibc)
|