File tree Expand file tree Collapse file tree 1 file changed +5
-15
lines changed Expand file tree Collapse file tree 1 file changed +5
-15
lines changed Original file line number Diff line number Diff line change
1
+ find_package (Boost REQUIRED COMPONENTS filesystem)
2
+
1
3
add_executable (test_ugv_nav4d test_ugv_nav4d.cpp)
2
4
add_executable (test_EnvironmentXYZTheta test_EnvironmentXYZTheta.cpp)
3
5
4
- target_include_directories (test_ugv_nav4d PUBLIC ${Boost_INCLUDE_DIR} )
5
- target_include_directories (test_EnvironmentXYZTheta PUBLIC ${Boost_INCLUDE_DIR} )
6
-
7
6
8
- if (ROCK_QT_VERSION_4)
9
- target_link_libraries (test_ugv_nav4d PRIVATE
10
- ugv_nav4d)
11
- target_link_libraries (test_EnvironmentXYZTheta PRIVATE
12
- ugv_nav4d)
13
- endif ()
7
+ target_link_libraries (test_ugv_nav4d PRIVATE ugv_nav4d Boost::filesystem)
8
+ target_link_libraries (test_EnvironmentXYZTheta PRIVATE ugv_nav4d Boost::filesystem)
14
9
15
- if (ROCK_QT_VERSION_5)
16
- target_link_libraries (test_ugv_nav4d PRIVATE
17
- ugv_nav4d-qt5)
18
- target_link_libraries (test_EnvironmentXYZTheta PRIVATE
19
- ugv_nav4d-qt5)
20
- endif ()
21
10
22
11
# Install the binaries
23
12
install (TARGETS test_ugv_nav4d EXPORT test_ugv_nav4d-targets
@@ -31,3 +20,4 @@ install(TARGETS test_EnvironmentXYZTheta EXPORT test_EnvironmentXYZTheta-targets
31
20
LIBRARY DESTINATION lib
32
21
RUNTIME DESTINATION bin
33
22
)
23
+
You can’t perform that action at this time.
0 commit comments