You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conan installs everything just fine, and generates some build artifacts for me, but when I try to create a CMake project, it complains:
$ cmake -B build -DCMAKE_TOOLCHAIN_FILE=build/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
CMake Error at build/cmakedeps_macros.cmake:67 (message):
Library 'qtaudio_coreaudio' not found in package. If 'qtaudio_coreaudio'
is a system library, declare it with 'cpp_info.system_libs' property
Call Stack (most recent call first):
build/Qt6-Target-release.cmake:24 (conan_package_library_targets)
build/Qt6Targets.cmake:26 (include)
build/Qt6Config.cmake:16 (include)
CMakeLists.txt:95 (find_package)
I am not entirely sure how to configure Conan to find the "qtaudio_coreaudio" plugin...
Description
I am attempting to build a Qt application which takes advantage of QtMultimedia, on macOS. I have the following
conanfile.txt
:Conan installs everything just fine, and generates some build artifacts for me, but when I try to create a CMake project, it complains:
I am not entirely sure how to configure Conan to find the "qtaudio_coreaudio" plugin...
Package and Environment Details
Conan profile
Host profile:
[settings]
arch=x86_64
build_type=Release
compiler=apple-clang
compiler.cppstd=gnu17
compiler.libcxx=libc++
compiler.version=14
os=Macos
Build profile:
[settings]
arch=x86_64
build_type=Release
compiler=apple-clang
compiler.cppstd=gnu17
compiler.libcxx=libc++
compiler.version=14
os=Macos
Steps to reproduce
$ conan install . --output-folder=build --build=missing $ cmake -B build -DCMAKE_TOOLCHAIN_FILE=build/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
Logs
Click to expand log
The text was updated successfully, but these errors were encountered: