Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLMC
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
17
Issues
17
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
VLMC
Commits
b3b227c8
Commit
b3b227c8
authored
Feb 05, 2014
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake: Fix qt version message
parent
698807ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
CMakeLists.txt
CMakeLists.txt
+4
-2
No files found.
CMakeLists.txt
View file @
b3b227c8
...
...
@@ -144,7 +144,9 @@ if (NOT FORCE_QT4)
endif
()
endif
()
if
(
NOT Qt5Core_FOUND
)
message
(
STATUS
"Could not find Qt5, searching for Qt4 instead..."
)
if
(
NOT FORCE_QT4
)
message
(
STATUS
"Could not find Qt5, searching for Qt4 instead..."
)
endif
()
set
(
NEEDED_QT4_COMPONENTS
"QtCore"
"QtXml"
"QtNetwork"
)
if
(
WITH_GUI
)
...
...
@@ -152,7 +154,7 @@ if(NOT Qt5Core_FOUND)
endif
()
find_package
(
Qt4 REQUIRED COMPONENTS
${
NEEDED_QT4_COMPONENTS
}
)
message
(
STATUS
"Found Qt4 &
${
NEEDED_QT4_COMPONENTS
}
modules"
)
macro
(
qt_use_modules
)
endmacro
()
...
...
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