From d37099fcbf31083713a6ec557c415031311ce7f8 Mon Sep 17 00:00:00 2001 From: andrea Date: Mon, 31 Jul 2023 08:56:51 +0200 Subject: [PATCH] remove qt4 references Removed find and include mocked files (QT4) --- src/Gui/Quarter/CMakeLists.txt | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/Gui/Quarter/CMakeLists.txt b/src/Gui/Quarter/CMakeLists.txt index 45ee147fdd..cc657e946e 100644 --- a/src/Gui/Quarter/CMakeLists.txt +++ b/src/Gui/Quarter/CMakeLists.txt @@ -13,16 +13,9 @@ FILE(GLOB_RECURSE Sources RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.cpp) FILE(GLOB_RECURSE PublicHeaders RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h) FILE(GLOB_RECURSE PrivateHeaders RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ../../include/Quarter/*.h) -# Find the headers that should be Moc'ed -FILE(GLOB_RECURSE MocPrivateHeaders RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h) -FILE(GLOB_RECURSE MocPublicHeaders RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ../../include/Quarter/*.h) - -# Moc both the public and private headers -SIM_QT4_AUTO_WRAP_CPP(MocPrivateSources ${MocPrivateHeaders}) -SIM_QT4_AUTO_WRAP_CPP(MocPublicSources ${MocPublicHeaders}) # Some convenient variables. The inclusion of the headers in the source variable is to force CMake to include the headers in VS project generation. -SET(AllSources ${Sources} ${MocPublicSources} ${MocPrivateSources} ${PublicHeaders} ${PrivateHeaders} ${CMakeCache}) +SET(AllSources ${Sources} ${PublicHeaders} ${PrivateHeaders} ${CMakeCache}) IF (Spacenav_FOUND)