diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-05-18 19:20:31 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-05-18 19:20:31 (GMT) |
commit | 7ec7fb7e95a8859c71d8a2345c88b62e81ac3124 (patch) | |
tree | 869504ba3bfd02caef92eec7c14355442bbafde9 /Source/cmMakefileGenerator.h | |
parent | cb0af952cf1ebaa82eb09bb3b63be681e3d2d3ca (diff) | |
download | CMake-7ec7fb7e95a8859c71d8a2345c88b62e81ac3124.zip CMake-7ec7fb7e95a8859c71d8a2345c88b62e81ac3124.tar.gz CMake-7ec7fb7e95a8859c71d8a2345c88b62e81ac3124.tar.bz2 |
changes for cmake to live outside of the source tree
Diffstat (limited to 'Source/cmMakefileGenerator.h')
-rw-r--r-- | Source/cmMakefileGenerator.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmMakefileGenerator.h b/Source/cmMakefileGenerator.h index 72832b2..a44e62b 100644 --- a/Source/cmMakefileGenerator.h +++ b/Source/cmMakefileGenerator.h @@ -76,6 +76,12 @@ public: */ virtual void SetLocal(bool ) {}; + /** + * Try to determine system infomation such as shared library + * extension, pthreads, byte order etc. + */ + virtual void ComputeSystemInfo() = 0; + protected: cmMakefile* m_Makefile; }; |