Skip to content

Commit 775f8b9

Browse files
committed
output of 'roscreate-pkg camera_aravis'
0 parents  commit 775f8b9

File tree

4 files changed

+71
-0
lines changed

4 files changed

+71
-0
lines changed

Diff for: CMakeLists.txt

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
cmake_minimum_required(VERSION 2.4.6)
2+
include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)
3+
4+
# Set the build type. Options are:
5+
# Coverage : w/ debug symbols, w/o optimization, w/ code-coverage
6+
# Debug : w/ debug symbols, w/o optimization
7+
# Release : w/o debug symbols, w/ optimization
8+
# RelWithDebInfo : w/ debug symbols, w/ optimization
9+
# MinSizeRel : w/o debug symbols, w/ optimization, stripped binaries
10+
#set(ROS_BUILD_TYPE RelWithDebInfo)
11+
12+
rosbuild_init()
13+
14+
#set the default path for built executables to the "bin" directory
15+
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
16+
#set the default path for built libraries to the "lib" directory
17+
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
18+
19+
#uncomment if you have defined messages
20+
#rosbuild_genmsg()
21+
#uncomment if you have defined services
22+
#rosbuild_gensrv()
23+
24+
#common commands for building c++ executables and libraries
25+
#rosbuild_add_library(${PROJECT_NAME} src/example.cpp)
26+
#target_link_libraries(${PROJECT_NAME} another_library)
27+
#rosbuild_add_boost_directories()
28+
#rosbuild_link_boost(${PROJECT_NAME} thread)
29+
#rosbuild_add_executable(example examples/example.cpp)
30+
#target_link_libraries(example ${PROJECT_NAME})

Diff for: Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include $(shell rospack find mk)/cmake.mk

Diff for: mainpage.dox

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/**
2+
\mainpage
3+
\htmlinclude manifest.html
4+
5+
\b camera_aravis is ...
6+
7+
<!--
8+
Provide an overview of your package.
9+
-->
10+
11+
12+
\section codeapi Code API
13+
14+
<!--
15+
Provide links to specific auto-generated API documentation within your
16+
package that is of particular interest to a reader. Doxygen will
17+
document pretty much every part of your code, so do your best here to
18+
point the reader to the actual API.
19+
20+
If your codebase is fairly large or has different sets of APIs, you
21+
should use the doxygen 'group' tag to keep these APIs together. For
22+
example, the roscpp documentation has 'libros' group.
23+
-->
24+
25+
26+
*/

Diff for: manifest.xml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<package>
2+
<description brief="camera_aravis">
3+
4+
camera_aravis
5+
6+
</description>
7+
<author>strawlab</author>
8+
<license>BSD</license>
9+
<review status="unreviewed" notes=""/>
10+
<url>http://ros.org/wiki/camera_aravis</url>
11+
12+
</package>
13+
14+

0 commit comments

Comments
 (0)