mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
19 lines
262 B
CMake
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()
|