File tree Expand file tree Collapse file tree 3 files changed +12
-17
lines changed Expand file tree Collapse file tree 3 files changed +12
-17
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ set(DEPS_PKGCONFIG_LIST
15
15
16
16
if (ENABLE_DEBUG_DRAWINGS)
17
17
list (APPEND DEPS_PKGCONFIG_LIST vizkit3d_debug_drawings-commands)
18
+ # These are (only) required for building the GUIs:
19
+ list (APPEND DEPS_PKGCONFIG_QT4 vizkit3d_debug_drawings)
20
+ list (APPEND DEPS_PKGCONFIG_QT5 vizkit3d_debug_drawings-qt5)
18
21
endif ()
19
22
20
23
rock_library(ugv_nav4d
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ if(ROCK_QT_VERSION_4)
24
24
trajectory_follower-viz
25
25
pcl_common${PCL_VERSION_SUFFIX}
26
26
pcl_io${PCL_VERSION_SUFFIX}
27
+ ${DEPS_PKGCONFIG_QT4}
27
28
)
28
29
29
30
rock_executable(ugv_nav4d_bin
@@ -59,6 +60,7 @@ if(ROCK_QT_VERSION_5)
59
60
trajectory_follower-viz-qt5
60
61
pcl_common${PCL_VERSION_SUFFIX}
61
62
pcl_io${PCL_VERSION_SUFFIX}
63
+ ${DEPS_PKGCONFIG_QT5}
62
64
)
63
65
64
66
rock_executable(ugv_nav4d_bin-qt5
Original file line number Diff line number Diff line change 1
1
find_package (Boost REQUIRED COMPONENTS filesystem)
2
2
3
- add_executable (test_ugv_nav4d test_ugv_nav4d.cpp)
4
- add_executable (test_EnvironmentXYZTheta test_EnvironmentXYZTheta.cpp)
5
3
6
-
7
- target_link_libraries (test_ugv_nav4d PRIVATE ugv_nav4d Boost::filesystem)
8
- target_link_libraries (test_EnvironmentXYZTheta PRIVATE ugv_nav4d Boost::filesystem)
9
-
10
-
11
- # Install the binaries
12
- install (TARGETS test_ugv_nav4d EXPORT test_ugv_nav4d-targets
13
- ARCHIVE DESTINATION lib
14
- LIBRARY DESTINATION lib
15
- RUNTIME DESTINATION bin
4
+ rock_executable(test_ugv_nav4d
5
+ SOURCES test_ugv_nav4d.cpp
6
+ DEPS_PKGCONFIG ugv_nav4d
16
7
)
17
8
18
- install (TARGETS test_EnvironmentXYZTheta EXPORT test_EnvironmentXYZTheta-targets
19
- ARCHIVE DESTINATION lib
20
- LIBRARY DESTINATION lib
21
- RUNTIME DESTINATION bin
9
+ rock_executable( test_EnvironmentXYZTheta
10
+ SOURCES test_EnvironmentXYZTheta.cpp
11
+ DEPS Boost::filesystem
12
+ DEPS_PKGCONFIG ugv_nav4d
22
13
)
23
-
You can’t perform that action at this time.
0 commit comments