Files
allwpilib/myRobot/CMakeLists.txt
2019-09-29 20:36:28 -07:00

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)