mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
18 lines
242 B
CMake
18 lines
242 B
CMake
file(GLOB SRCS *.cpp)
|
|
|
|
add_executable(testntcore ${SRCS})
|
|
|
|
if(MSVC)
|
|
target_link_libraries(testntcore
|
|
ntcore_static
|
|
libgmock
|
|
libgtest
|
|
)
|
|
else()
|
|
target_link_libraries(testntcore
|
|
ntcore
|
|
libgmock
|
|
libgtest
|
|
)
|
|
endif()
|