-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from jontje/plain_cmake
Plain cmake
- Loading branch information
Showing
6 changed files
with
166 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
sudo: required | ||
language: generic | ||
dist: trusty | ||
services: | ||
- docker | ||
|
||
env: | ||
matrix: | ||
- ROS_DISTRO="kinetic" ROS_REPO=ros NOT_TEST_INSTALL=true CATKIN_LINT=true | ||
- ROS_DISTRO="kinetic" ROS_REPO=ros CATKIN_LINT=true | ||
- ROS_DISTRO="dashing" ROS_REPO=ros | ||
|
||
install: | ||
- git clone --depth=1 https://github.com/ros-industrial/industrial_ci.git .ci_config | ||
- git clone --depth=1 -b master https://github.com/ros-industrial/industrial_ci.git .ci_config | ||
|
||
script: | ||
- .ci_config/travis.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# - Config file for the abb_libegm package | ||
# It defines the following variable | ||
# abb_libegm_LIBRARIES - libraries to link against | ||
|
||
include(CMakeFindDependencyMacro) | ||
|
||
# Find dependencies | ||
find_dependency(Threads REQUIRED) | ||
find_dependency(Boost REQUIRED COMPONENTS regex system thread) | ||
|
||
# Our library dependencies (contains definitions for IMPORTED targets) | ||
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]") | ||
|
||
# These are IMPORTED targets created by @[email protected] | ||
set(abb_libegm_LIBRARIES @PROJECT_NAME@::@PROJECT_NAME@) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>abb_libegm</name> | ||
<version>1.0.0</version> | ||
<description>The abb_libegm package for easing the use of ABB Externally Guided Motion (EGM) product</description> | ||
|
||
<description>A C++ library for interfacing with ABB robot controllers supporting Externally Guided Motion (689-1)</description> | ||
<maintainer email="[email protected]">Jon Tjerngren</maintainer> | ||
|
||
<license>BSD 3-Clause</license> | ||
|
||
<author email="[email protected]">Jon Tjerngren</author> | ||
|
||
<url type="repository">https://github.com/ros-industrial/abb_libegm</url> | ||
<author>Jon Tjerngren</author> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<buildtool_depend>cmake</buildtool_depend> | ||
|
||
<build_depend>boost</build_depend> | ||
<depend>boost</depend> | ||
<build_depend>protobuf-dev</build_depend> | ||
<build_export_depend>protobuf-dev</build_export_depend> | ||
<exec_depend>protobuf</exec_depend> | ||
|
||
<run_depend>boost</run_depend> | ||
<run_depend>protobuf</run_depend> | ||
<export> | ||
<build_type>cmake</build_type> | ||
</export> | ||
</package> |