Merge pull request #28 from ros/issue_28
Missing Setup.py for Resource_retriever
This commit is contained in:
commit
f4ec1566f6
|
@ -3,6 +3,8 @@ project(resource_retriever)
|
||||||
|
|
||||||
find_package(catkin REQUIRED COMPONENTS rosconsole roslib)
|
find_package(catkin REQUIRED COMPONENTS rosconsole roslib)
|
||||||
|
|
||||||
|
catkin_python_setup()
|
||||||
|
|
||||||
catkin_package(
|
catkin_package(
|
||||||
LIBRARIES ${PROJECT_NAME}
|
LIBRARIES ${PROJECT_NAME}
|
||||||
INCLUDE_DIRS include)
|
INCLUDE_DIRS include)
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
from distutils.core import setup
|
||||||
|
from catkin_pkg.python_setup import generate_distutils_setup
|
||||||
|
|
||||||
|
d = generate_distutils_setup()
|
||||||
|
d['packages'] = ['resource_retriever']
|
||||||
|
d['scripts'] = []
|
||||||
|
d['package_dir'] = {'': 'src'}
|
||||||
|
|
||||||
|
setup(**d)
|
Loading…
Reference in New Issue