-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9b85a7
commit afbc3c5
Showing
5 changed files
with
25 additions
and
25 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,16 +1,16 @@ | ||
cmake_minimum_required(VERSION 3.0.2) | ||
project(genpy_stubgen) | ||
project(genpyi) | ||
find_package(catkin REQUIRED COMPONENTS genmsg genpy) | ||
|
||
catkin_package( | ||
CATKIN_DEPENDS genmsg genpy | ||
CFG_EXTRAS genpy-stubgen-extras.cmake | ||
CFG_EXTRAS genpyi-extras.cmake | ||
) | ||
|
||
add_subdirectory(scripts) | ||
|
||
file(WRITE ${CATKIN_DEVEL_PREFIX}/${GENMSG_LANGS_DESTINATION}/genpy_stubgen "Python stub") | ||
install(FILES ${CATKIN_DEVEL_PREFIX}/${GENMSG_LANGS_DESTINATION}/genpy_stubgen | ||
file(WRITE ${CATKIN_DEVEL_PREFIX}/${GENMSG_LANGS_DESTINATION}/genpyi "Python Stub") | ||
install(FILES ${CATKIN_DEVEL_PREFIX}/${GENMSG_LANGS_DESTINATION}/genpyi | ||
DESTINATION ${GENMSG_LANGS_DESTINATION}) | ||
|
||
catkin_python_setup() |
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,3 +1,3 @@ | ||
catkin_install_python( | ||
PROGRAMS run_genpy_stubgen.py | ||
PROGRAMS run_genpyi.py | ||
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) |
File renamed without changes.