summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-06-22 13:58:10 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-06-22 13:58:10 (GMT)
commitf7d4f27c2a378317fa382fc1813ba7cb31cbd839 (patch)
treeecdf2d72c79c335abe372f892c2d560b1b2b5758 /Source/cmMakefile.h
parent1d9889c5d34d83b269697c0b09e840bf83066e6f (diff)
downloadCMake-f7d4f27c2a378317fa382fc1813ba7cb31cbd839.zip
CMake-f7d4f27c2a378317fa382fc1813ba7cb31cbd839.tar.gz
CMake-f7d4f27c2a378317fa382fc1813ba7cb31cbd839.tar.bz2
ENH: add IMPORT keyword to ADD_LIBRARY, dependencies are not yet working
STYLE: fix line lengths and indentation, use enum as argument to AddLibrary() instead of int (which was initialized from a bool in some cases) Alex
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index b027e30..bc6bd5b 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -283,7 +283,7 @@ public:
/**
* Set the name of the library.
*/
- void AddLibrary(const char *libname, int shared,
+ void AddLibrary(const char *libname, cmTarget::TargetType type,
const std::vector<std::string> &srcs,
bool excludeFromAll = false);