Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: create hoge_package package #48

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions hoge_package/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
cmake_minimum_required(VERSION 3.5)
project(hoge_package)

Check warning on line 2 in hoge_package/CMakeLists.txt

View workflow job for this annotation

GitHub Actions / spell-check-partial

Unknown word (hoge)

if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()

if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()

find_package(ament_cmake REQUIRED)

if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
endif()

ament_auto_package(INSTALL_TO_SHARE
launch
)
Empty file added hoge_package/launch/.gitkeep
Empty file.
16 changes: 16 additions & 0 deletions hoge_package/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>hoge_package</name>

Check warning on line 4 in hoge_package/package.xml

View workflow job for this annotation

GitHub Actions / spell-check-partial

Unknown word (hoge)
<version>0.0.0</version>
<description>The hoge_package package</description>

Check warning on line 6 in hoge_package/package.xml

View workflow job for this annotation

GitHub Actions / spell-check-partial

Unknown word (hoge)
<maintainer email="[email protected]">Akiro HARADA</maintainer>

<license>Apache 2</license>

<buildtool_depend>ament_cmake</buildtool_depend>

<export>
<build_type>ament_cmake</build_type>
</export>
</package>
Empty file added hoge_package/src/.gitkeep
Empty file.
Loading