Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
OpenFlipper-Free
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
23
Issues
23
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenFlipper-Free
OpenFlipper-Free
Commits
69631474
Commit
69631474
authored
May 13, 2016
by
Martin Schultz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bug in cmake that prevented proper detection of qt < 5.6
parent
da097bd9
Pipeline
#1806
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
cmake/ACGCommon.cmake
cmake/ACGCommon.cmake
+2
-2
No files found.
cmake/ACGCommon.cmake
View file @
69631474
...
...
@@ -295,7 +295,7 @@ macro (acg_qt5)
find_package
(
Qt5Concurrent QUIET
)
find_package
(
Qt5PrintSupport QUIET
)
find_package
(
Qt5Svg QUIET
)
else
if
(
${
QT_VERSION_MINOR
}
GREATER 5
)
else
(
${
QT_VERSION_MINOR
}
GREATER 5
)
find_package
(
Qt5Declarative QUIET
)
find_package
(
Qt5Widgets QUIET
)
find_package
(
Qt5Gui QUIET
)
...
...
@@ -327,7 +327,7 @@ macro (acg_qt5)
AND Qt5PrintSupport_FOUND
)
set
(
QT5_FOUND TRUE
)
endif
()
else
if
(
${
QT_VERSION_MINOR
}
GREATER 5
)
else
(
${
QT_VERSION_MINOR
}
GREATER 5
)
if
(
Qt5Core_FOUND AND Qt5Declarative_FOUND AND Qt5Widgets_FOUND
AND Qt5Gui_FOUND AND Qt5OpenGL_FOUND AND Qt5Network_FOUND
AND Qt5Script_FOUND AND Qt5ScriptTools_FOUND AND Qt5Sql_FOUND
...
...
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