mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 07:29:07 +08:00
23 lines
509 B
Diff
23 lines
509 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -80,13 +80,17 @@
|
|
set(GZ_TOOLS_VER 2)
|
|
|
|
#--------------------------------------
|
|
# Find QT
|
|
+set(qt_pkgconfig "Qt5Core Qt5Quick Qt5QuickControls2 Qt5Widgets")
|
|
+if (WIN32)
|
|
+set(qt_pkgconfig "")
|
|
+endif()
|
|
gz_find_package (Qt5
|
|
COMPONENTS
|
|
Core
|
|
Quick
|
|
QuickControls2
|
|
Widgets
|
|
REQUIRED
|
|
- PKGCONFIG "Qt5Core Qt5Quick Qt5QuickControls2 Qt5Widgets"
|
|
+ PKGCONFIG ${qt_pkgconfig}
|
|
)
|