1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-22 19:54:57 +08:00

Initial commit.

This commit is contained in:
William Woodall 2011-03-13 16:38:23 -05:00
commit ab455881b2
4 changed files with 51 additions and 0 deletions

24
.gitignore vendored Normal file
View File

@ -0,0 +1,24 @@
.*
.DS_Store
*.coverage
*.egg-info
*.log
*.swp
*.pyc
*.pyo
*.zip
*.cc
*/files/*
*/tmp/*
*.hwm*
*.cfg
.svn
build
bin
cpp
*/lib/*
installed
patched
wiped
msg_gen
srv_gen

17
CMakeLists.txt Normal file
View File

@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 2.4.6)
include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)
# Append to CPACK_SOURCE_IGNORE_FILES a semicolon-separated list of
# directories (or patterns, but directories should suffice) that should
# be excluded from the distro. This is not the place to put things that
# should be ignored everywhere, like "build" directories; that happens in
# rosbuild/rosbuild.cmake. Here should be listed packages that aren't
# ready for inclusion in a distro.
#
# This list is combined with the list in rosbuild/rosbuild.cmake. Note
# that CMake 2.6 may be required to ensure that the two lists are combined
# properly. CMake 2.4 seems to have unpredictable scoping rules for such
# variables.
#list(APPEND CPACK_SOURCE_IGNORE_FILES /core/experimental)
rosbuild_make_distribution(0.1.0)

1
Makefile Normal file
View File

@ -0,0 +1 @@
include $(shell rospack find mk)/cmake_stack.mk

9
stack.xml Normal file
View File

@ -0,0 +1,9 @@
<stack>
<description brief="wwoodall-ros-pkg">wwoodall-ros-pkg</description>
<author>Maintained by William Woodall</author>
<license>BSD</license>
<review status="unreviewed" notes=""/>
<url>http://ros.org/wiki/wwoodall-ros-pkg</url>
<depend stack="ros" />
</stack>