summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-05-19 17:02:12 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-05-19 17:02:12 (GMT)
commit0f2f0749785ab76a30a55b9a4764ecaac39776b6 (patch)
tree98043aca1c247239245dee20a04204ca6f222360 /Source/cmTarget.cxx
parentc8c3fff032dd5a582fa08dcd1034f9f92dc07244 (diff)
downloadCMake-0f2f0749785ab76a30a55b9a4764ecaac39776b6.zip
CMake-0f2f0749785ab76a30a55b9a4764ecaac39776b6.tar.gz
CMake-0f2f0749785ab76a30a55b9a4764ecaac39776b6.tar.bz2
ENH: fix for vtk 4.4 and other projects that may try to link to a module
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 0f34a97..1c88eb7 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -23,6 +23,11 @@
#include <set>
#include <queue>
#include <stdlib.h> // required for atof
+const char* cmTarget::TargetTypeNames[] = {
+ "EXECUTABLE", "STATIC_LIBRARY",
+ "SHARED_LIBRARY", "MODULE_LIBRARY", "UTILITY", "GLOBAL_TARGET",
+ "INSTALL_FILES", "INSTALL_PROGRAMS", "INSTALL_DIRECTORY"
+};
//----------------------------------------------------------------------------
cmTarget::cmTarget()