Files
allwpilib/myRobot/CMakeLists.txt

9 lines
184 B
CMake
Raw Normal View History

project(myRobot)
include(CompileWarnings)
file(GLOB myRobotCpp_src src/main/native/cpp/*.cpp)
add_executable(myRobotCpp ${myRobotCpp_src})
target_link_libraries(myRobotCpp wpilibc)