diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-06-12 15:55:54 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-06-12 15:55:54 (GMT) |
commit | f03ee2a53ddd17cf087b5c17730ed5d0a191bdcc (patch) | |
tree | 4e6c893fe6ba2fff66c2a16ed88bd49da8e0c63f /Source/cmakemain.cxx | |
parent | 8f745e7fbee6ab8230e66e8e0c3df957374e1325 (diff) | |
download | CMake-f03ee2a53ddd17cf087b5c17730ed5d0a191bdcc.zip CMake-f03ee2a53ddd17cf087b5c17730ed5d0a191bdcc.tar.gz CMake-f03ee2a53ddd17cf087b5c17730ed5d0a191bdcc.tar.bz2 |
cmake does not require two arguments
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r-- | Source/cmakemain.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 5ecf1e5..bcc250f 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -3,11 +3,6 @@ int main(int ac, char** av) { cmake cm; - if(ac < 1) - { - cm.Usage(av[0]); - return -1; - } std::vector<std::string> args; for(int i =0; i < ac; ++i) { |