-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new top-level CMakeFile, new package.xml
- Loading branch information
Stephan Wirth
committed
Apr 26, 2013
1 parent
0b80734
commit 8a2b1c8
Showing
2 changed files
with
22 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,6 @@ | ||
cmake_minimum_required(VERSION 2.8) | ||
|
||
set(KARTO_LIB_TYPE SHARED) | ||
add_subdirectory(source) | ||
|
||
install(FILES package.xml DESTINATION share/OpenKarto) |
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,16 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>OpenKarto</name> | ||
<version>1.0.0</version> | ||
<description>Release-package for OpenKarto</description> | ||
|
||
<maintainer email="[email protected]">Stephan Wirth</maintainer> | ||
<license>LGPLv3</license> | ||
|
||
<run_depend>catkin</run_depend> | ||
<buildtool_depend>cmake</buildtool_depend> | ||
|
||
<export> | ||
<build_type>cmake</build_type> | ||
</export> | ||
</package> |