mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
Add unit test framework to CMakeLists.txt. Fix a couple of bugs found by unit tests. Change-Id: I2092a7f0570fae0f19f9e083c4837ccefcc4ca1a
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
|
|
)
|
|
|