Browse Source

QtAutogen: Remove read of SKIP_AUTOUIC target property.

Skipping AUTOUIC for a target is achieved by setting the AUTOUIC
target property go OFF.
Stephen Kelly 11 years ago
parent
commit
0d934efd59
1 changed files with 1 additions and 7 deletions
  1. 1 7
      Source/cmQtAutoGenerators.cxx

+ 1 - 7
Source/cmQtAutoGenerators.cxx

@@ -652,8 +652,6 @@ void cmQtAutoGenerators::SetupAutoUicTarget(cmTarget const* target,
   std::string skip_uic;
   const char *sep = "";
 
-  bool skip  = target->GetPropertyAsBool("SKIP_AUTOUIC");
-
   std::set<cmStdString> skipped;
 
   for(std::vector<cmSourceFile*>::const_iterator fileIt = srcFiles.begin();
@@ -663,12 +661,8 @@ void cmQtAutoGenerators::SetupAutoUicTarget(cmTarget const* target,
     cmSourceFile* sf = *fileIt;
     std::string absFile = cmsys::SystemTools::GetRealPath(
                                                     sf->GetFullPath().c_str());
-    if (!skip)
-      {
-      skip = cmSystemTools::IsOn(sf->GetPropertyForUser("SKIP_AUTOUIC"));
-      }
 
-    if (skip)
+    if (cmSystemTools::IsOn(sf->GetPropertyForUser("SKIP_AUTOUIC")))
       {
       skip_uic += sep;
       skip_uic += absFile;