Closed ra1nb0w closed 5 years ago
In MacPorts we can have multiple QWT versions so I need to pass as parameters where to find the right one, in this case QWT 6. Unfortunately the following doesn't work
-DQWT_INCLUDE_DIRS=${qt_dir}/lib/qwt.framework/Versions/6/Headers \ -DQWT_LIBRARIES=${qt_dir}/lib/qwt.framework/qwt
Probably, CMakeLists.txt needs to set this value. thanks
CMakeLists.txt
Can you try QWT_INCLUDE_DIR and QWT_LIBRARY?
QWT_INCLUDE_DIR
QWT_LIBRARY
The ones you used are actually overwritten in the findqwt.cmake with the "singular" defines. So that may be it.
Oh..I didn't see those! thank you!
In MacPorts we can have multiple QWT versions so I need to pass as parameters where to find the right one, in this case QWT 6. Unfortunately the following doesn't work
Probably,
CMakeLists.txt
needs to set this value. thanks