forked from benema/pixhawk-kinect-pkg
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Benedikt Mathis
committed
Jun 3, 2011
1 parent
9282f60
commit e82d731
Showing
9 changed files
with
3,385 additions
and
0 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 |
---|---|---|
@@ -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) |
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,32 @@ | ||
cmake_minimum_required(VERSION 2.4.6) | ||
include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake) | ||
|
||
# Set the build type. Options are: | ||
# Coverage : w/ debug symbols, w/o optimization, w/ code-coverage | ||
# Debug : w/ debug symbols, w/o optimization | ||
# Release : w/o debug symbols, w/ optimization | ||
# RelWithDebInfo : w/ debug symbols, w/ optimization | ||
# MinSizeRel : w/o debug symbols, w/ optimization, stripped binaries | ||
set(ROS_BUILD_TYPE Release) | ||
|
||
rosbuild_init() | ||
|
||
#set the default path for built executables to the "bin" directory | ||
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin) | ||
#set the default path for built libraries to the "lib" directory | ||
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib) | ||
|
||
#uncomment if you have defined messages | ||
#rosbuild_genmsg() | ||
#uncomment if you have defined services | ||
#rosbuild_gensrv() | ||
|
||
#common commands for building c++ executables and libraries | ||
#rosbuild_add_library(${PROJECT_NAME} src/example.cpp) | ||
#target_link_libraries(${PROJECT_NAME} another_library) | ||
#rosbuild_add_boost_directories() | ||
#rosbuild_link_boost(${PROJECT_NAME} thread) | ||
#rosbuild_add_executable(example examples/example.cpp) | ||
#target_link_libraries(example ${PROJECT_NAME}) | ||
|
||
rosbuild_add_executable(KinectOdo src/main.cpp src/extractFeature.h src/extractFeature.cpp) |
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,26 @@ | ||
/** | ||
\mainpage | ||
\htmlinclude manifest.html | ||
|
||
\b KinectOdo is ... | ||
|
||
<!-- | ||
Provide an overview of your package. | ||
--> | ||
|
||
|
||
\section codeapi Code API | ||
|
||
<!-- | ||
Provide links to specific auto-generated API documentation within your | ||
package that is of particular interest to a reader. Doxygen will | ||
document pretty much every part of your code, so do your best here to | ||
point the reader to the actual API. | ||
|
||
If your codebase is fairly large or has different sets of APIs, you | ||
should use the doxygen 'group' tag to keep these APIs together. For | ||
example, the roscpp documentation has 'libros' group. | ||
--> | ||
|
||
|
||
*/ |
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,26 @@ | ||
<package> | ||
<description brief="KinectOdo"> | ||
|
||
KinectOdo | ||
|
||
</description> | ||
<author>Benedikt Mathis</author> | ||
<license>BSD</license> | ||
<review status="unreviewed" notes=""/> | ||
<url>http://ros.org/wiki/KinectOdo</url> | ||
<depend package="roscpp"/> | ||
<depend package="opencv2"/> | ||
<depend package="sensor_msgs"/> | ||
<depend package="cv_bridge"/> | ||
<depend package="std_msgs"/> | ||
<depend package="image_transport"/> | ||
<depend package="pcl"/> | ||
<depend package="pcl_ros"/> | ||
<depend package="message_filters"/> | ||
<depend package="flann"/> | ||
<depend package="geometry_msgs"/> | ||
<depend package="nav_msgs"/> | ||
<depend package="sba"/> | ||
</package> | ||
|
||
|
Oops, something went wrong.