forked from uzh-rpg/flightmare
-
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
22 changed files
with
454 additions
and
72 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,9 @@ | ||
{ | ||
"recommendations": [ | ||
"ms-vscode.cpptools", | ||
"ms-vscode.cmake-tools", | ||
"matepek.vscode-catch2-test-adapter", | ||
"hbenl.vscode-test-explorer", | ||
"xaver.clang-format" | ||
] | ||
} |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
DisableFormat: true | ||
SortIncludes: false | ||
--- | ||
--- |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
# Except this file | ||
!.gitignore | ||
!.clang-format | ||
!setup.py | ||
!setup.py |
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,28 @@ | ||
# Setup catkin simple | ||
find_package(catkin_simple REQUIRED) | ||
catkin_simple() | ||
|
||
add_definitions(-std=c++17) | ||
|
||
# Library and Executables | ||
cs_add_library(${PROJECT_NAME} ${FLIGHTLIB_SOURCES}) | ||
target_link_libraries(${PROJECT_NAME} | ||
${catkin_LIBRARIES} | ||
${BLAS_LIBRARIES} | ||
${LAPACK_LIBRARIES} | ||
${LAPACKE_LIBRARIES} | ||
${OpenCV_LIBRARIES} | ||
yaml-cpp | ||
zmq | ||
zmqpp | ||
) | ||
|
||
# Build tests | ||
if(BUILD_TESTS) | ||
catkin_add_gtest(flightlib_tests ${FLIGHTLIB_TEST_SOURCES}) | ||
target_link_libraries(flightlib_tests ${PROJECT_NAME} gtest gtest_main) | ||
endif() | ||
|
||
# Finish catkin simple | ||
cs_install() | ||
cs_export() |
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
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
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
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 format="2"> | ||
<name>flightlib</name> | ||
<version>0.0.1</version> | ||
<description>Flightmare: An Open Flexible Quadrotor</description> | ||
|
||
<maintainer email="[email protected]">Yunlong Song</maintainer> | ||
|
||
<license>GNU GPL</license> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<buildtool_depend>catkin_simple</buildtool_depend> | ||
|
||
<depend>gtest</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
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
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,9 @@ | ||
{ | ||
"python.autoComplete.extraPaths": [ | ||
"/home/sysadmin/Projects/RPG_PendulumGate/catkin_gate/devel/lib/python2.7/dist-packages", | ||
"/opt/ros/melodic/lib/python2.7/dist-packages", | ||
"/home/sysadmin/GitHub/high_mpc", | ||
"/home/sysadmin/GitHub/flightmare/flightrl", | ||
"/usr/local/python3" | ||
] | ||
} |
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
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
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,29 @@ | ||
repositories: | ||
catkin_simple: | ||
type: git | ||
url: [email protected]:catkin/catkin_simple.git | ||
version: master | ||
eigen_catkin: | ||
type: git | ||
url: [email protected]:ethz-asl/eigen_catkin.git | ||
version: master | ||
mav_comm: | ||
type: git | ||
url: [email protected]:ethz-asl/mav_comm.git | ||
version: master | ||
rotors_simulator: | ||
type: git | ||
url: [email protected]:ethz-asl/rotors_simulator.git | ||
version: master | ||
rpg_quadrotor_common: | ||
type: git | ||
url: [email protected]:uzh-rpg/rpg_quadrotor_common.git | ||
version: master | ||
rpg_single_board_io: | ||
type: git | ||
url: [email protected]:uzh-rpg/rpg_single_board_io.git | ||
version: master | ||
rpg_quadrotor_control: | ||
type: git | ||
url: [email protected]:uzh-rpg/rpg_quadrotor_control.git | ||
version: master |
Oops, something went wrong.