summaryrefslogtreecommitdiffstats
path: root/Source/cmakewizard.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmakewizard.cxx')
-rw-r--r--Source/cmakewizard.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmakewizard.cxx b/Source/cmakewizard.cxx
index 6542c93..52cf726 100644
--- a/Source/cmakewizard.cxx
+++ b/Source/cmakewizard.cxx
@@ -37,7 +37,7 @@ void Ask(const char* key, cmCacheManager::CacheEntry & entry)
}
-main(int ac, char** av)
+int main(int ac, char** av)
{
std::vector<std::string> args;
for(int j=0; j < ac; ++j)
@@ -105,4 +105,5 @@ main(int ac, char** av)
}
while(asked);
std::cout << "CMake complete, run make to build project.\n";
+ return 0;
}