forked from bitcraze/crazyflie-clients-python
-
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
Showing
3 changed files
with
52 additions
and
7 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,7 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(cfclient) | ||
find_package(catkin REQUIRED) | ||
catkin_package() | ||
catkin_python_setup() | ||
install(PROGRAMS bin/cfclient bin/cfheadless | ||
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}) |
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,25 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<!-- Changed the name to cfclient to avoid '_', as, when installed, | ||
python converts them to '-' which are not allowed in catkin pkgs. | ||
This prevents get_distribution from working, and retriving version | ||
as specified in setup.py --> | ||
<name>cfclient</name> | ||
<version>2014.04.9001</version> | ||
<description>Bitcraze Cazyflie nano quadcopter client</description> | ||
|
||
<url type="website">https://github.com/mchenryc/crazyflie_clients_python</url> | ||
<license>GPL</license> | ||
|
||
<author email="[email protected]">Bitcraze team</author> | ||
<maintainer email="[email protected]">Chadwick McHenry</maintainer> | ||
|
||
<!-- Dependencies can be catkin packages or system dependencies --> | ||
<!-- Use build_depend for packages you need at compile time: --> | ||
<!-- Use buildtool_depend for build tool packages: --> | ||
<!-- Use run_depend for packages you need at runtime: --> | ||
<!-- Use test_depend for packages you need only for testing: --> | ||
<buildtool_depend>catkin</buildtool_depend> | ||
<build_depend>rospy</build_depend> | ||
|
||
</package> |
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