Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
ros2-interfaces
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Elphel
ros2-interfaces
Commits
81825356
Commit
81825356
authored
Dec 06, 2018
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initial
parent
13f32ea7
Pipeline
#834
canceled with stages
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
0 deletions
+43
-0
CMakeLists.txt
CMakeLists.txt
+24
-0
package.xml
package.xml
+16
-0
Strings.srv
srv/Strings.srv
+3
-0
No files found.
CMakeLists.txt
0 → 100644
View file @
81825356
cmake_minimum_required
(
VERSION 3.5
)
project
(
elphel-interfaces
)
# Default to C++14
if
(
NOT CMAKE_CXX_STANDARD
)
set
(
CMAKE_CXX_STANDARD 14
)
endif
()
if
(
CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES
"Clang"
)
# we dont use add_compile_options with pedantic in message packages
# because the Python C extensions dont comply with it
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Wall -Wextra -Wpedantic"
)
endif
()
find_package
(
ament_cmake REQUIRED
)
find_package
(
rosidl_default_generators REQUIRED
)
rosidl_generate_interfaces
(
${
PROJECT_NAME
}
"srv/Strings.srv"
)
#install(FILES mapping_rules.yaml DESTINATION share/${PROJECT_NAME})
ament_package
()
package.xml
0 → 100644
View file @
81825356
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package
format=
"3"
>
<name>
elphel_interfaces
</name>
<version>
1.0.0
</version>
<description>
Contains message and service definitions.
</description>
<maintainer
email=
"oleg@elphel.com"
>
Oleg Dzhimiev
</maintainer>
<license>
GPL-3.0-or-later
</license>
<buildtool_depend>
ament_cmake
</buildtool_depend>
<buildtool_depend>
rosidl_default_generators
</buildtool_depend>
<exec_depend>
rosidl_default_runtime
</exec_depend>
<member_of_group>
rosidl_interface_packages
</member_of_group>
<export>
<build_type>
ament_cmake
</build_type>
</export>
</package>
srv/Strings.srv
0 → 100644
View file @
81825356
string request
---
string response
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment