Files
allwpilib/test/unit/CMakeLists.txt
2015-09-03 21:31:31 -07:00

19 lines
262 B
CMake

file(GLOB SRCS *.cpp)
add_executable(testntcore ${SRCS})
add_test(testntcore testntcore)
if(MSVC)
target_link_libraries(testntcore
ntcore_static
gmock
gtest
)
else()
target_link_libraries(testntcore
ntcore
gmock
gtest
)
endif()