Skip to content
Snippets Groups Projects
Commit fa375ba6 authored by Mederic Fourmy's avatar Mederic Fourmy
Browse files

Add comment in cmake file

parent 7b69f555
No related branches found
No related tags found
2 merge requests!451After cmake and const refactor,!445Resolve "Refactoring WOLF installation system"
Pipeline #10433 canceled
...@@ -15,6 +15,11 @@ target_link_libraries(dummy ${PLUGIN_NAME}) ...@@ -15,6 +15,11 @@ target_link_libraries(dummy ${PLUGIN_NAME})
# Create a specific test executable for gtest_example # # Create a specific test executable for gtest_example #
wolf_add_gtest(gtest_example gtest_example.cpp) # wolf_add_gtest(gtest_example gtest_example.cpp) #
# # # #
# OPTIONAL: if the gtest depends on the dummy library #
# (used for implementing pure virtual base classes), #
# add a line #
# target_link_libraries(gtest_example PUBLIC dummy) #
# #
########################################################### ###########################################################
################ ADD YOUR TESTS BELOW #################### ################ ADD YOUR TESTS BELOW ####################
...@@ -78,7 +83,7 @@ wolf_add_gtest(gtest_logging gtest_logging.cpp) ...@@ -78,7 +83,7 @@ wolf_add_gtest(gtest_logging gtest_logging.cpp)
wolf_add_gtest(gtest_motion_buffer gtest_motion_buffer.cpp) wolf_add_gtest(gtest_motion_buffer gtest_motion_buffer.cpp)
# Parameters server # Parameters server
wolf_add_gtest(gtest_param_server gtest_param_server.cpp) # ${CMAKE_CURRENT_LIST_DIR}) wolf_add_gtest(gtest_param_server gtest_param_server.cpp)
# YAML parser # YAML parser
wolf_add_gtest(gtest_parser_yaml gtest_parser_yaml.cpp) wolf_add_gtest(gtest_parser_yaml gtest_parser_yaml.cpp)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment