[cmake-commits] martink committed cmTarget.cxx 1.165 1.166

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Oct 30 11:03:18 EDT 2007


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

Modified Files:
	cmTarget.cxx 
Log Message:
BUG: fix undefined property FRAMEWORK


Index: cmTarget.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmTarget.cxx,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -d -r1.165 -r1.166
--- cmTarget.cxx	12 Oct 2007 15:43:50 -0000	1.165
+++ cmTarget.cxx	30 Oct 2007 15:03:16 -0000	1.166
@@ -95,6 +95,14 @@
      "the target is built.");
 
   cm->DefineProperty
+    ("FRAMEWORK", cmProperty::TARGET,
+     "This target is a framework on the Mac.",
+     "Is set to true then if this target is a shared library, it will "
+     "be built as a framework when built on the mac. It will have the "
+     "directory structure required for a framework and will be suitable "
+     "to be used with the -framework option");
+
+  cm->DefineProperty
     ("HAS_CXX", cmProperty::TARGET,
      "Force a target to use the CXX linker.",
      "Setting HAS_CXX on a target will force the target to use the "



More information about the Cmake-commits mailing list