Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
4604a32b
Commit
4604a32b
authored
Jan 15, 2020
by
Patrick José Pereira
Committed by
Daniel Agar
Jan 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake: Add COMPILE_QML option
Signed-off-by:
Patrick José Pereira
<
patrickelectric@gmail.com
>
parent
f16168c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
CMakeLists.txt
CMakeLists.txt
+13
-0
No files found.
CMakeLists.txt
View file @
4604a32b
...
@@ -61,6 +61,19 @@ if (CCACHE AND CCACHE_PROGRAM AND NOT DEFINED ENV{CCACHE_DISABLE})
...
@@ -61,6 +61,19 @@ if (CCACHE AND CCACHE_PROGRAM AND NOT DEFINED ENV{CCACHE_DISABLE})
set_property
(
GLOBAL PROPERTY RULE_LAUNCH_COMPILE
"
${
CCACHE_PROGRAM
}
"
)
set_property
(
GLOBAL PROPERTY RULE_LAUNCH_COMPILE
"
${
CCACHE_PROGRAM
}
"
)
endif
()
endif
()
#=============================================================================
# Compile QML
#
option
(
COMPILE_QML
"Pre-compile QML files using the Qt Quick compiler."
FALSE
)
add_feature_info
(
COMPILE_QML COMPILE_QML
"Pre-compile QML files using the Qt Quick compiler."
)
if
(
COMPILE_QML
)
find_package
(
Qt5QuickCompiler
)
set_package_properties
(
Qt5QuickCompiler PROPERTIES
DESCRIPTION
"Pre-compile QML files using the Qt Quick compiler."
TYPE OPTIONAL
)
endif
()
#=============================================================================
#=============================================================================
# GStreamer
# GStreamer
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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