I am adding QT like this:
find_package(Qt5 COMPONENTS Core Quick REQUIRED)
...
target_link_libraries(${PROJECT_NAME} Qt5::Core Qt5::Quick ${OpenCV_LIBS})
but cmake finds some python artifacts instead of expected C:\QT...
How can I change this? Tried to find some examples, but didn't find any clear instruction, which subfolder of C:\QT\ I should specify (any where).
find_package
search order is following:
CMAKE_PREFIX_PATH
, CMAKE_FRAMEWORK_PATH
, CMAKE_APPBUNDLE_PATH
<package>_DIR
, CMAKE_PREFIX_PATH
, CMAKE_FRAMEWORK_PATH
, CMAKE_APPBUNDLE_PATH
.HINTS
option.PATH
environment variable.With that in mind there are several ways to provide a proper version to QT:
QTDIR
). And use it in the CMake files:
set(CMAKE_PREFIX_PATH "$ENV{QTDIR}")
find_package(Qt5 HINTS "$ENV{QTDIR}" COMPONENTS Core Quick REQUIRED)
Qt5_DIR
pointing to the proper version of QT. Then no additional changes to CMake files are required.PATH
environment variable, for example, for windows C:\Qt\Qt5.10.1\5.10.1\msvc2017_64