I've studied creating package in the official Conan tutorial. I'd like to create my own package for a static library (CMake-based project). It supports Linux and Windows. But it depends on Qt LTS 5.9x. CMakeLists.txt contains a call to find_package
. Usually I passed
-DCMAKE_PREFIX_PATH=path_to_qt_cmake_modules
to cmake utility. Conan has no official Qt 5.9 support. What is the correct way to pass CMAKE_PREFIX_PATH
to conan
during package install?