diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-02-12 14:26:25 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-02-12 14:26:25 -0500 |
commit | d195c01a900c24df9b4ff262cd4dbb9fd901592b (patch) | |
tree | 5db9a5c3b4716024f900846ecabf5de8648eec35 /Source/cmCommands.cxx | |
parent | 452a127004220c10354fc986f69b66580ce7de31 (diff) | |
download | cmake-d195c01a900c24df9b4ff262cd4dbb9fd901592b.tar.gz |
ENH: add cache manager class, move all commands into cmCommands.cxx to speed up compile times, share a .lib with the command line and mfc versions.
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx new file mode 100644 index 0000000000..e6cf4b7a2a --- /dev/null +++ b/Source/cmCommands.cxx @@ -0,0 +1,20 @@ +#include "cmAbstractFilesCommand.cxx" +#include "cmAddTargetCommand.cxx" +#include "cmAuxSourceDirectoryCommand.cxx" +#include "cmExecutablesCommand.cxx" +#include "cmFindIncludeCommand.cxx" +#include "cmFindLibraryCommand.cxx" +#include "cmFindProgramCommand.cxx" +#include "cmIncludeDirectoryCommand.cxx" +#include "cmLibraryCommand.cxx" +#include "cmLinkDirectoriesCommand.cxx" +#include "cmLinkLibrariesCommand.cxx" +#include "cmProjectCommand.cxx" +#include "cmSourceFilesCommand.cxx" +#include "cmSourceFilesRequireCommand.cxx" +#include "cmSubdirCommand.cxx" +#include "cmTestsCommand.cxx" +#include "cmUnixDefinesCommand.cxx" +#include "cmUnixLibrariesCommand.cxx" +#include "cmWin32DefinesCommand.cxx" +#include "cmWin32LibrariesCommand.cxx" |