diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-29 14:09:11 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-29 14:09:11 (GMT) |
commit | 15805d260e099e356acab9378c9c3e847348c4ab (patch) | |
tree | 4492c9d6d9cecd03d748b503445378873d707579 /Source/cmakewizard.cxx | |
parent | 1be3b0fd993602feb0c994467787c6be93ec5a1a (diff) | |
download | CMake-15805d260e099e356acab9378c9c3e847348c4ab.zip CMake-15805d260e099e356acab9378c9c3e847348c4ab.tar.gz CMake-15805d260e099e356acab9378c9c3e847348c4ab.tar.bz2 |
fix for shared libs and borland
Diffstat (limited to 'Source/cmakewizard.cxx')
-rw-r--r-- | Source/cmakewizard.cxx | 3 |
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; } |