Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Plugin-TextureControl
Project overview
Project overview
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
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenFlipper-Free
Plugin-TextureControl
Commits
190e15b1
Commit
190e15b1
authored
Oct 13, 2016
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dropped QWT5 and removed more qt4 references
parent
ae8920d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
17 deletions
+6
-17
CMakeLists.txt
CMakeLists.txt
+6
-17
No files found.
CMakeLists.txt
View file @
190e15b1
...
...
@@ -23,22 +23,11 @@ endif()
list
(
REMOVE_DUPLICATES CURRENT_PLUGIN_DEPS
)
# use Qwt6 for QT5
if
(
NOT FORCE_QT4 AND QT5_FOUND
)
find_package
(
Qwt6
)
if
(
QWT6_FOUND
)
add_definitions
(
-DWITH_QWT
)
openflipper_plugin
(
DEPS
${
CURRENT_PLUGIN_DEPS
}
Qwt6
)
else
()
openflipper_plugin
(
DEPS
${
CURRENT_PLUGIN_DEPS
}
)
endif
()
find_package
(
Qwt6
)
if
(
QWT6_FOUND
)
add_definitions
(
-DWITH_QWT
)
openflipper_plugin
(
DEPS
${
CURRENT_PLUGIN_DEPS
}
Qwt6
)
else
()
find_package
(
Qwt5
)
if
(
Qwt5_Qt4_FOUND
)
add_definitions
(
-DWITH_QWT
)
openflipper_plugin
(
DEPS
${
CURRENT_PLUGIN_DEPS
}
Qwt5
)
else
()
openflipper_plugin
(
DEPS
${
CURRENT_PLUGIN_DEPS
}
)
endif
()
openflipper_plugin
(
DEPS
${
CURRENT_PLUGIN_DEPS
}
)
endif
()
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