Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
SkywardHub
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Avionics
Software Development
SkywardHub
Commits
fdec857f
Commit
fdec857f
authored
10 months ago
by
Alberto Nidasio
Browse files
Options
Downloads
Patches
Plain Diff
[CMake] Applied Qt autogen tools only to groundstation target
parent
76041c9f
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+4
-4
4 additions, 4 deletions
CMakeLists.txt
with
4 additions
and
4 deletions
CMakeLists.txt
+
4
−
4
View file @
fdec857f
...
@@ -26,10 +26,6 @@ project(SkywardHub)
...
@@ -26,10 +26,6 @@ project(SkywardHub)
set
(
CMAKE_CXX_STANDARD 11
)
set
(
CMAKE_CXX_STANDARD 11
)
set
(
CMAKE_CXX_STANDARD_REQUIRED ON
)
set
(
CMAKE_CXX_STANDARD_REQUIRED ON
)
set
(
CMAKE_AUTOMOC ON
)
set
(
CMAKE_AUTORCC ON
)
set
(
CMAKE_AUTOUIC ON
)
# MAvLink Skyward library
# MAvLink Skyward library
add_subdirectory
(
libs/mavlink-skyward-lib EXCLUDE_FROM_ALL
)
add_subdirectory
(
libs/mavlink-skyward-lib EXCLUDE_FROM_ALL
)
...
@@ -104,6 +100,10 @@ target_link_libraries(groundstation PUBLIC
...
@@ -104,6 +100,10 @@ target_link_libraries(groundstation PUBLIC
Mavlink::Mavlink
Mavlink::Mavlink
)
)
set_target_properties
(
groundstation PROPERTIES AUTOMOC ON
)
set_target_properties
(
groundstation PROPERTIES AUTORCC ON
)
set_target_properties
(
groundstation PROPERTIES AUTOUIC ON
)
# Prevent the creation of a console window on Windows
# Prevent the creation of a console window on Windows
set_target_properties
(
groundstation PROPERTIES WIN32_EXECUTABLE TRUE
)
set_target_properties
(
groundstation PROPERTIES WIN32_EXECUTABLE TRUE
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment