Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
3d9edf0c
Commit
3d9edf0c
authored
Oct 25, 2018
by
Daniel Agar
Browse files
cmake create FollowMe library in src/FollowMe
parent
33d14dd4
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/CMakeLists.txt
View file @
3d9edf0c
...
...
@@ -6,7 +6,6 @@ include_directories(
${
Qt5Location_PRIVATE_INCLUDE_DIRS
}
FollowMe
qgcunittest
Terrain
)
...
...
@@ -109,8 +108,6 @@ add_library(qgc
${
EXTRA_SRC
}
FollowMe/FollowMe.cc
Terrain/TerrainQuery.cc
CmdLineOptParser.cc
...
...
@@ -157,6 +154,7 @@ add_subdirectory(FactSystem)
add_subdirectory
(
FirmwarePlugin
)
add_subdirectory
(
FlightDisplay
)
add_subdirectory
(
FlightMap
)
add_subdirectory
(
FollowMe
)
add_subdirectory
(
GPS
)
add_subdirectory
(
Joystick
)
add_subdirectory
(
MissionManager
)
...
...
@@ -200,6 +198,7 @@ target_link_libraries(qgc
FirmwarePlugin
FlightDisplay
FlightMap
FollowMe
gps
Joystick
MissionManager
...
...
src/FollowMe/CMakeLists.txt
0 → 100644
View file @
3d9edf0c
add_library
(
FollowMe
FollowMe.cc
)
target_link_libraries
(
FollowMe
PUBLIC
qgc
)
target_include_directories
(
FollowMe
PUBLIC
${
CMAKE_CURRENT_SOURCE_DIR
}
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment