Skip to content

Commit

Permalink
Merge pull request #322 from ros2/idl-stage-1
Browse files Browse the repository at this point in the history
Work toward switching to IDL
  • Loading branch information
dirk-thomas committed Nov 15, 2018
2 parents 075fe35 + 4f4d457 commit b7d12f5
Show file tree
Hide file tree
Showing 21 changed files with 939 additions and 885 deletions.
20 changes: 20 additions & 0 deletions rosidl_adapter/CMakeLists.txt
@@ -0,0 +1,20 @@
cmake_minimum_required(VERSION 3.5)

project(rosidl_adapter NONE)

find_package(ament_cmake REQUIRED)
find_package(ament_cmake_python REQUIRED)

ament_python_install_package(${PROJECT_NAME})

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

ament_package()

if(BUILD_TESTING)
find_package(ament_cmake_pytest REQUIRED)
ament_add_pytest_test(pytest test)
endif()
23 changes: 23 additions & 0 deletions rosidl_adapter/package.xml
@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>rosidl_adapter</name>
<version>0.5.1</version>
<description>
API an scripts to parse .msg/.srv/.action files and convert them to .idl.
</description>
<maintainer email="dthomas@osrfoundation.org">Dirk Thomas</maintainer>
<license>Apache License 2.0</license>

<build_depend>ament_cmake</build_depend>

<exec_depend>python3-empy</exec_depend>

<test_depend>ament_cmake_pytest</test_depend>
<test_depend>ament_lint_common</test_depend>
<test_depend>ament_lint_auto</test_depend>

<export>
<build_type>ament_cmake</build_type>
</export>
</package>
Empty file.

0 comments on commit b7d12f5

Please sign in to comment.