Files
allwpilib/wpilibc/wpilibC++IntegrationTests/CMakeLists.txt
thomasclark a3e11f201e More C++ tests
Change-Id: I92ce014a8ebe1c3b97f27aa15476fc3101cc1f1c
2014-06-07 17:38:33 -04:00

9 lines
419 B
CMake

cmake_minimum_required(VERSION 2.8)
project(WPILibC++IntegrationTests)
file(GLOB_RECURSE SRC_FILES src/*.cpp src/gtest/src/gtest-all.cc src/gtest/src/gtest_main.cc)
include_directories(include/ src/gtest/ src/gtest/include/ ../wpilibC++/include/ ${HAL_API_INCLUDES} ${NWT_API_INCLUDES})
add_executable(FRCUserProgram ${SRC_FILES})
target_link_libraries(FRCUserProgram WPILibAthena HALAthena NetworkTables ${NI_LIBS})