mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-05 03:21:42 +00:00
11 lines
136 B
CMake
11 lines
136 B
CMake
|
|
file(GLOB SRCS *.cpp)
|
||
|
|
|
||
|
|
add_executable(testntcore ${SRCS})
|
||
|
|
|
||
|
|
target_link_libraries(testntcore
|
||
|
|
ntcore
|
||
|
|
libgmock
|
||
|
|
libgtest
|
||
|
|
)
|
||
|
|
|