[Cmake-commits] [cmake-commits] david.cole committed cmMakefileExecutableTargetGenerator.cxx 1.47 1.48

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Sep 2 12:43:48 EDT 2008


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv12533/Source

Modified Files:
	cmMakefileExecutableTargetGenerator.cxx 
Log Message:
BUG: Fix issue #3648 - make sure CMake reruns if a Bundle application's directory is removed or if it's Info.plist file disappears since those elements are put in place at CMake configure time.


Index: cmMakefileExecutableTargetGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefileExecutableTargetGenerator.cxx,v
retrieving revision 1.47
retrieving revision 1.48
diff -C 2 -d -r1.47 -r1.48
*** cmMakefileExecutableTargetGenerator.cxx	7 Apr 2008 17:39:13 -0000	1.47
--- cmMakefileExecutableTargetGenerator.cxx	2 Sep 2008 16:43:45 -0000	1.48
***************
*** 505,508 ****
--- 505,509 ----
    cmSystemTools::MakeDirectory(outpath.c_str());
    outpath += "/";
+   this->Makefile->AddCMakeDependFile(outpath.c_str());
  
    // Configure the Info.plist file.  Note that it needs the executable name
***************
*** 512,514 ****
--- 513,516 ----
                                                 targetName.c_str(),
                                                 plist.c_str());
+   this->Makefile->AddCMakeDependFile(plist.c_str());
  }



More information about the Cmake-commits mailing list