diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-09-06 17:06:23 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-09-06 17:06:23 (GMT) |
commit | 25ff4552b3d17c9c4f601c7f488710c4350323d1 (patch) | |
tree | 79475f5fb9965ad672bb85ae245130f63e632cce /Source/cmaketest.cxx | |
parent | 2c7e9b3b59cda840adc2aa4c3bfe1ffa0707be99 (diff) | |
download | CMake-25ff4552b3d17c9c4f601c7f488710c4350323d1.zip CMake-25ff4552b3d17c9c4f601c7f488710c4350323d1.tar.gz CMake-25ff4552b3d17c9c4f601c7f488710c4350323d1.tar.bz2 |
new arch
Diffstat (limited to 'Source/cmaketest.cxx')
-rw-r--r-- | Source/cmaketest.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmaketest.cxx b/Source/cmaketest.cxx index 4228053..2acdc98 100644 --- a/Source/cmaketest.cxx +++ b/Source/cmaketest.cxx @@ -115,7 +115,7 @@ int main (int argc, char **argv) std::cout << "Generating build files...\n"; cmake cm; - if (cm.Generate(args) != 0) + if (cm.Run(args) != 0) { std::cerr << "Error: cmake execution failed\n"; // return to the original directory @@ -126,7 +126,7 @@ int main (int argc, char **argv) cmake cm2; std::cout << "Generating build files (again)...\n"; - if (cm2.Generate(args) != 0) + if (cm2.Run(args) != 0) { std::cerr << "Error: cmake execution failed\n"; // return to the original directory |