Files
allwpilib/test/unit/CMakeLists.txt

19 lines
262 B
CMake
Raw Normal View History

file(GLOB SRCS *.cpp)
add_executable(testntcore ${SRCS})
2015-09-03 21:25:47 -07:00
add_test(testntcore testntcore)
if(MSVC)
target_link_libraries(testntcore
ntcore_static
2015-08-23 14:46:10 -04:00
gmock
gtest
)
else()
target_link_libraries(testntcore
ntcore
2015-08-23 14:46:10 -04:00
gmock
gtest
)
endif()