File tree 3 files changed +9
-93
lines changed
include/nav_layer_from_points
3 files changed +9
-93
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.5)
2
2
project (nav_layer_from_points)
3
3
4
- add_compile_options (-Wall -Wextra -Wpedantic)
4
+ if (NOT CMAKE_CXX_STANDARD)
5
+ set (CMAKE_CXX_STANDARD 17)
6
+ endif ()
7
+
8
+ if (CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
9
+ add_compile_options (-Wall -Wextra -Wpedantic)
10
+ endif ()
5
11
6
12
### Dependencies
7
13
find_package (ament_cmake_auto REQUIRED)
@@ -31,13 +37,11 @@ target_include_directories(${PROJECT_NAME}
31
37
)
32
38
33
39
# Export package
40
+ ament_target_dependencies(${PROJECT_NAME} ${dep_pkgs} )
34
41
ament_export_dependencies(${dep_pkgs} )
35
- # Export package nav2_costmap_2d
36
42
pluginlib_export_plugin_description_file(nav2_costmap_2d costmap_plugins.xml)
37
43
38
-
39
44
### Install
40
-
41
45
ament_auto_package(INSTALL_TO_SHARE
42
46
config
43
47
)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include < nav_layer_from_points/costmap_layer.h >
15
+ #include < nav_layer_from_points/costmap_layer.hpp >
16
16
17
17
#include < fstream>
18
18
You can’t perform that action at this time.
0 commit comments