diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-08-23 20:13:34 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-08-23 20:13:34 (GMT) |
commit | 499bd45d4dfb51e5a9ae2b530e7d7fc61bfaefbd (patch) | |
tree | f0eda3904e38f56478c968ff6a1f2a91254cf240 /Source/cmMakefile.h | |
parent | d7f1a49006c2c2c82fe799bd2141873aceb6a585 (diff) | |
download | CMake-499bd45d4dfb51e5a9ae2b530e7d7fc61bfaefbd.zip CMake-499bd45d4dfb51e5a9ae2b530e7d7fc61bfaefbd.tar.gz CMake-499bd45d4dfb51e5a9ae2b530e7d7fc61bfaefbd.tar.bz2 |
removed shared lib support
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index db39fcb..7040fca 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -58,12 +58,12 @@ public: /** * Construct an empty makefile. */ - CM_EXPORT cmMakefile(); + cmMakefile(); /** * Destructor. */ - CM_EXPORT ~cmMakefile(); + ~cmMakefile(); /** * Read and parse a CMakeLists.txt file. @@ -415,7 +415,7 @@ public: * If the variable is not found in this makefile instance, the * cache is then queried. */ - CM_EXPORT const char* GetDefinition(const char*) const; + const char* GetDefinition(const char*) const; /** Test a boolean cache entry to see if it is true or false, * returns false if no entry defined. @@ -454,7 +454,7 @@ public: * Dump documentation to a file. If 0 is returned, the * operation failed. */ - CM_EXPORT int DumpDocumentationToFile(std::ostream&); + int DumpDocumentationToFile(std::ostream&); /** * Expand all defined varibles in the string. |