-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modified cmi to be able to build metapackages without CMakeLists.txt (#…
…349)
- Loading branch information
1 parent
9b2e409
commit d85b0a3
Showing
5 changed files
with
117 additions
and
21 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
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,4 +1,4 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(@name@) | ||
find_package(catkin REQUIRED) | ||
catkin_metapackage() | ||
catkin_metapackage(@metapackage_arguments@) |
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 |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# Software License Agreement (BSD License) | ||
# | ||
# Copyright (c) 2013, Open Source Robotics Foundation, Inc. | ||
# All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions | ||
# are met: | ||
# | ||
# * Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# * Redistributions in binary form must reproduce the above | ||
# copyright notice, this list of conditions and the following | ||
# disclaimer in the documentation and/or other materials provided | ||
# with the distribution. | ||
# * Neither the name of Open Source Robotics Foundation, Inc. nor | ||
# the names of its contributors may be used to endorse or promote | ||
# products derived from this software without specific prior | ||
# written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
# POSSIBILITY OF SUCH DAMAGE. | ||
|
||
from __future__ import print_function | ||
|
||
import os | ||
import re | ||
|
||
from catkin.find_in_workspaces import find_in_workspaces | ||
|
||
|
||
def get_cmake_path(): | ||
relpath = os.path.join(os.path.dirname(__file__), '..', '..', 'cmake') | ||
if os.path.exists(relpath): | ||
return os.path.normpath(relpath) | ||
paths = find_in_workspaces(['share'], 'catkin', first_matching_workspace_only=True, first_match_only=True) | ||
if not paths: | ||
raise RuntimeError('Could not determine catkin cmake path') | ||
return os.path.join(paths[0], 'cmake') | ||
|
||
|
||
def configure_file(template_file, environment): | ||
''' | ||
Evaluate a .in template file used in CMake with configure_file(). | ||
:param template_file: path to the template, ``str`` | ||
:param environment: dictionary of placeholders to substitute, | ||
``dict`` | ||
:returns: string with evaluates template | ||
:raises: KeyError for placeholders in the template which are not | ||
in the environment | ||
''' | ||
with open(template_file, 'r') as f: | ||
template = f.read() | ||
return configure_string(template, environment) | ||
|
||
|
||
def configure_string(template, environment): | ||
''' | ||
Substitute variables enclosed by @ characters. | ||
:param template: the template, ``str`` | ||
:param environment: dictionary of placeholders to substitute, | ||
``dict`` | ||
:returns: string with evaluates template | ||
:raises: KeyError for placeholders in the template which are not | ||
in the environment | ||
''' | ||
def substitute(match): | ||
var = match.group(0)[1:-1] | ||
return environment[var] | ||
return re.sub('\@[a-zA-Z0-9_]+\@', substitute, template) |