Skip to content

Commit 4211163

Browse files
Initial commit for catkin package
0 parents  commit 4211163

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
npm-debug.log
2+
node_modules/

CMakeLists.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(rosnodejs_examples)
3+
4+
find_package(catkin REQUIRED)
5+
6+
###################################
7+
## catkin specific configuration ##
8+
###################################
9+
catkin_package()
10+
11+
#############
12+
## Install ##
13+
#############
14+
15+
install(PROGRAMS
16+
scripts/talker.js
17+
scripts/listener.js
18+
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
19+
)
20+

package.xml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0"?>
2+
<package>
3+
<name>rosnodejs_examples</name>
4+
<version>0.0.0</version>
5+
<description>The rosnodejs_examples package</description>
6+
7+
<maintainer email="[email protected]">Ian McMahon</maintainer>
8+
<license>Apache 2.0</license>
9+
10+
11+
<!-- Url tags are optional, but multiple are allowed, one per tag -->
12+
<!-- Optional attribute type can be: website, bugtracker, or repository -->
13+
<!-- Example: -->
14+
<!-- <url type="website">http://wiki.ros.org/rosnodejs_examples</url> -->
15+
16+
<author email="[email protected]">Ian McMahon</author>
17+
<buildtool_depend>catkin</buildtool_depend>
18+
19+
</package>

0 commit comments

Comments
 (0)