Merge branch 'frame-base-tests' into 'master'
Ctest configuration This replicates issue #115 , which in turn traces back to !103, regarding `ctest` and `gtest`. I finally left the project as this (checkout branch `frame-base-tests`): - `wolf/src/tests` --> here all the gtest files are located - In `wolf/CMakeLists.txt` ```cmake if(BUILD_TESTS) enable_testing() endif() ``` - In `wolf/src/CMakeLists.txt` ```cmake if(BUILD_TESTS) MESSAGE("Building tests.") add_subdirectory(test) endif() ``` See merge request !104
No related branches found
No related tags found
Showing
- CMakeLists.txt 11 additions, 10 deletionsCMakeLists.txt
- src/CMakeLists.txt 13 additions, 8 deletionssrc/CMakeLists.txt
- src/constraint_fix.h 2 additions, 0 deletionssrc/constraint_fix.h
- src/sensor_odom_2D.h 2 additions, 0 deletionssrc/sensor_odom_2D.h
- src/test/CMakeLists.txt 13 additions, 9 deletionssrc/test/CMakeLists.txt
- src/test/gtest_frame_base.cpp 123 additions, 0 deletionssrc/test/gtest_frame_base.cpp
src/test/gtest_frame_base.cpp
0 → 100644
Please register or sign in to comment