-
Notifications
You must be signed in to change notification settings - Fork 74
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 #32 from ros/relocatable
resolve path of message file and include dirs in installspace at runtime (ros/catkin#490)
- Loading branch information
Showing
5 changed files
with
38 additions
and
14 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# generated from genmsg/cmake/pkg-msg-paths.cmake.em | ||
|
||
@[if DEVELSPACE]@ | ||
# message include dirs in develspace | ||
set(@(PROJECT_NAME)_MSG_INCLUDE_DIRS "@(PKG_MSG_INCLUDE_DIRS)") | ||
@[else]@ | ||
# message include dirs in installspace | ||
_prepend_path("${@(PROJECT_NAME)_DIR}/.." "@(PKG_MSG_INCLUDE_DIRS)" @(PROJECT_NAME)_MSG_INCLUDE_DIRS UNIQUE) | ||
@[end if]@ | ||
set(@(PROJECT_NAME)_MSG_DEPENDENCIES @(ARG_DEPENDENCIES)) |
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,8 @@ | ||
# generated from genmsg/cmake/pkg-msg-paths.context.in | ||
|
||
DEVELSPACE = '@DEVELSPACE@' == 'TRUE' | ||
INSTALLSPACE = '@INSTALLSPACE@' == 'TRUE' | ||
|
||
PROJECT_NAME = '@PROJECT_NAME@' | ||
PKG_MSG_INCLUDE_DIRS = '@PKG_MSG_INCLUDE_DIRS@' | ||
ARG_DEPENDENCIES = '@ARG_DEPENDENCIES@' |