mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
Made a toplevel directory for C++ and C++ tests Change-Id: I4bc2074a7036ec7fe79568b411637a5bee9eb5b3 Added the C++ testing framework and one test Change-Id: I1e80a1e16b251a49666820a9d4c8caa025da9785
9 lines
387 B
CMake
9 lines
387 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
project(WPILibC++IntegrationTests)
|
|
|
|
file(GLOB_RECURSE SRC_FILES src/*.cpp src/gtest/gtest-all.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})
|
|
|