diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-11-30 01:59:53 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-11-30 01:59:53 (GMT) |
commit | f670003d24c8dacc5f1b6b9ee51ccf0db274a2c0 (patch) | |
tree | cbb55e55aa9f380c5c5dd12b7b780c37982fea32 /Source/cmUnixMakefileGenerator.h | |
parent | 521d8d9410c7c7bb5958357933c9759035f51828 (diff) | |
download | CMake-f670003d24c8dacc5f1b6b9ee51ccf0db274a2c0.zip CMake-f670003d24c8dacc5f1b6b9ee51ccf0db274a2c0.tar.gz CMake-f670003d24c8dacc5f1b6b9ee51ccf0db274a2c0.tar.bz2 |
Nmake build: move most of hard-coded values to config parameters
Diffstat (limited to 'Source/cmUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmUnixMakefileGenerator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h index 277635c..b1145f4 100644 --- a/Source/cmUnixMakefileGenerator.h +++ b/Source/cmUnixMakefileGenerator.h @@ -168,14 +168,14 @@ protected: protected: std::string m_ExecutableOutputPath; std::string m_LibraryOutputPath; -private: - bool m_CacheOnly; - bool m_Recurse; + std::string m_SharedLibraryExtension; std::string m_ObjectFileExtension; std::string m_ExecutableExtension; std::string m_StaticLibraryExtension; - std::string m_SharedLibraryExtension; std::string m_LibraryPrefix; +private: + bool m_CacheOnly; + bool m_Recurse; }; #endif |