We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec2cdc8 commit 0e611f5Copy full SHA for 0e611f5
CMakeLists.txt
@@ -18,7 +18,9 @@ find_qt(COMPONENTS Core Widgets Svg Network)
18
find_package(nlohmann_json 3 REQUIRED)
19
20
# Find qrcodegencpp
21
-find_package(Libqrcodegencpp REQUIRED)
+set(CMAKE_FIND_PACKAGE_PREFER_CONFIG ON)
22
+find_package(qrcodegencpp REQUIRED)
23
+set(CMAKE_FIND_PACKAGE_PREFER_CONFIG OFF)
24
25
# Find WebSocket++
26
find_package(Websocketpp 0.8 REQUIRED)
@@ -151,7 +153,7 @@ target_link_libraries(
151
153
nlohmann_json::nlohmann_json
152
154
Websocketpp::Websocketpp
155
Asio::Asio
- Libqrcodegencpp::Libqrcodegencpp)
156
+ qrcodegencpp::qrcodegencpp)
157
158
set_target_properties_obs(
159
obs-websocket
0 commit comments