summaryrefslogtreecommitdiffstats
path: root/Source/CMakeBuildTargets.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2000-08-29 19:26:29 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2000-08-29 19:26:29 (GMT)
commit1f42f521cea8b953f4ad7ef5ca0d4c6d49c42a88 (patch)
treea7b88a2e4397167c0d6c72c9cf0fcf8f91dcd024 /Source/CMakeBuildTargets.cxx
parentd6bdba1096f36268e414f32829e22159e983031a (diff)
downloadCMake-1f42f521cea8b953f4ad7ef5ca0d4c6d49c42a88.zip
CMake-1f42f521cea8b953f4ad7ef5ca0d4c6d49c42a88.tar.gz
CMake-1f42f521cea8b953f4ad7ef5ca0d4c6d49c42a88.tar.bz2
NEW: move from tools and config to create CMake
Diffstat (limited to 'Source/CMakeBuildTargets.cxx')
-rw-r--r--Source/CMakeBuildTargets.cxx41
1 files changed, 41 insertions, 0 deletions
diff --git a/Source/CMakeBuildTargets.cxx b/Source/CMakeBuildTargets.cxx
new file mode 100644
index 0000000..06aebe8
--- /dev/null
+++ b/Source/CMakeBuildTargets.cxx
@@ -0,0 +1,41 @@
+#include "cmUnixMakefile.h"
+#include "cmMakeDepend.h"
+#include <iostream>
+
+main(int ac, char** av)
+{
+ if(ac < 2)
+ {
+ std::cerr << "Usage: " << av[0] << " Makefile.in -Ipath ..." << std::endl;
+ return -1;
+ }
+ cmUnixMakefile* mf = new cmUnixMakefile;
+ cmMakeDepend md;
+ if(ac > 2)
+ {
+ for(int i =2; i < ac; i++)
+ {
+ std::string arg = av[i];
+ if(arg.find("-I",0) != std::string::npos)
+ {
+ std::string path = arg.substr(2);
+ md.AddSearchPath(path.c_str());
+ }
+ if(arg.find("-S",0) != std::string::npos)
+ {
+ std::string path = arg.substr(2);
+ mf->SetCurrentDirectory(path.c_str());
+ }
+ }
+ }
+ if(!mf->ReadMakefile(av[1]))
+ {
+ std::cerr << "Usage: " << av[0] << " Makefile.in -Ipath ..." << std::endl;
+ return -1;
+ }
+
+ md.SetMakefile(mf);
+ md.DoDepends();
+ mf->OutputMakefile("CMakeTargets.make");
+ delete mf;
+}