mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 17:39:00 +08:00
21c801ea47
* updated rtabmap port * Update vcpkg.json * Addressing review comments, fixed missing deployed qt plugins, fixed CI error * applied format-manifest * ran x-add-version * Making octomap dependency optional because it doesn't work for debug build (see https://github.com/introlab/rtabmap/issues/995) * updated upstream version, fixed debug config * updated versions * fixing version * Added explicit depedency to qtbase. Added optional dependencies openni2, realsense2, k4w2 * Updated versions * Updated versions * cleanup versions * cleanup all versions * Applying format.diff from ci * overwrite version * qtbase: not using defaults * updated versions sha * added --trace-expand * Explicitly set autouic to OFF * Update rtabmap.json * removing cmake trace debug * updated versions --------- Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
16 lines
409 B
Diff
16 lines
409 B
Diff
diff --git a/guilib/src/CMakeLists.txt b/guilib/src/CMakeLists.txt
|
|
index 349f6f9e..ac54b0f2 100644
|
|
--- a/guilib/src/CMakeLists.txt
|
|
+++ b/guilib/src/CMakeLists.txt
|
|
@@ -60,6 +60,10 @@ SET(qrc
|
|
./GuiLib.qrc
|
|
)
|
|
|
|
+set(CMAKE_AUTOMOC OFF)
|
|
+set(CMAKE_AUTORCC OFF)
|
|
+set(CMAKE_AUTOUIC OFF)
|
|
+
|
|
IF(QT4_FOUND)
|
|
# generate rules for building source files from the resources
|
|
QT4_ADD_RESOURCES(srcs_qrc ${qrc})
|