diff options
author | Geoffrey Cross <geoff@cross.lu> | 2001-03-12 10:10:39 -0500 |
---|---|---|
committer | Geoffrey Cross <geoff@cross.lu> | 2001-03-12 10:10:39 -0500 |
commit | 8c4795025fd28088507e5814e167bdfc9f0345f0 (patch) | |
tree | c334e9cdaf39bf9cc639ae499e70947b9e2e6eeb /Source/cmCommands.cxx | |
parent | 8fb07209ebb805f9f1dbade9b68134f9a33555cf (diff) | |
download | cmake-8c4795025fd28088507e5814e167bdfc9f0345f0.tar.gz |
Include directories under Win32 only (inherited by subdirs)
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index e62f3e9c6f..f4abf326c1 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); |