diff options
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r-- | Source/cmakemain.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 68d8339..73c76e4 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -17,6 +17,7 @@ #endif #include "cmake.h" +#include "cmcmd.h" #include "cmCacheManager.h" #include "cmListFileCache.h" #include "cmakewizard.h" @@ -510,7 +511,7 @@ int do_cmake(int ac, char** av) } if(command) { - int ret = cmake::ExecuteCMakeCommand(args); + int ret = cmcmd::ExecuteCMakeCommand(args); return ret; } if (wiz) |