summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorGeoffrey Cross <geoff@cross.lu>2001-03-12 15:10:39 (GMT)
committerGeoffrey Cross <geoff@cross.lu>2001-03-12 15:10:39 (GMT)
commit8c4795025fd28088507e5814e167bdfc9f0345f0 (patch)
treec334e9cdaf39bf9cc639ae499e70947b9e2e6eeb /Source/cmCommands.cxx
parent8fb07209ebb805f9f1dbade9b68134f9a33555cf (diff)
downloadCMake-8c4795025fd28088507e5814e167bdfc9f0345f0.zip
CMake-8c4795025fd28088507e5814e167bdfc9f0345f0.tar.gz
CMake-8c4795025fd28088507e5814e167bdfc9f0345f0.tar.bz2
Include directories under Win32 only (inherited by subdirs)
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index e62f3e9..f4abf32 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -23,6 +23,7 @@
#include "cmUnixLibrariesCommand.cxx"
#include "cmWin32DefinesCommand.cxx"
#include "cmWin32LibrariesCommand.cxx"
+#include "cmWin32IncludeDirectoryCommand.cxx"
#include "cmConfigureFileNoAutoconf.cxx"
#include "cmCableCommand.cxx"
#include "cmCableData.cxx"
@@ -63,6 +64,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmUnixLibrariesCommand);
commands.push_back(new cmWin32DefinesCommand);
commands.push_back(new cmWin32LibrariesCommand);
+ commands.push_back(new cmWin32IncludeDirectoryCommand);
commands.push_back(new cmConfigureFileNoAutoconf);
commands.push_back(new cmCableDefineSetCommand);
commands.push_back(new cmCableOpenNamespaceCommand);