replace cmake .. -DCMAKE_BUILD_TYPE=Release by cmake .. -DCMAKE_BUILD_TYPE=Release -DCONAN_false to not use Conan. Hope your the dependencies are found on your Linux.
which can be
replace cmake .. -DCMAKE_BUILD_TYPE=Release by cmake .. -DCMAKE_BUILD_TYPE=Release -DCONAN=false to not use Conan. Hope your the dependencies are found on your Linux.
Even though correcting that, cmake toolchain try to find conan so it's trying to install this library through conan.. so seems like disabling conan not working as expected.
While digging through root level CMakeLists.txt file, below can be found so probably that needs to be taken under CONAN macro which worked fine for me. Also didn't understand use case of empty CONAN_EXPORTED.
In readme, seems minor typo.
which can be
Even though correcting that, cmake toolchain try to find
conan
so it's trying to install this library through conan.. so seems like disabling conan not working as expected.While digging through root level
CMakeLists.txt
file, below can be found so probably that needs to be taken underCONAN
macro which worked fine for me. Also didn't understand use case of emptyCONAN_EXPORTED
.which can be