summaryrefslogtreecommitdiffstats
path: root/Source/CMakeSetupCMD.cxx
blob: fabae5aa830a1c77ae586943ed05273dc099d84c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include "cmStandardIncludes.h"
#include "cmMakefile.h"
#include "cmMSProjectGenerator.h"


// this is the command line version of CMakeSetup.
// It is called from Visual Studio when a CMakeLists.txt
// file is changed.


// Set the command line arguments
void SetArgs(cmMakefile& builder, int ac, char** av)
{
  for(int i =3; i < ac; i++)
    {
    std::string arg = av[i];
    if(arg.find("-H",0) != std::string::npos)
      {
      std::string path = arg.substr(2);
      builder.SetHomeDirectory(path.c_str());
      }
    if(arg.find("-D",0) != std::string::npos)
      {
      std::string path = arg.substr(2);
      builder.SetCurrentDirectory(path.c_str());
      }
    if(arg.find("-O",0) != std::string::npos)
      {
      std::string path = arg.substr(2);
      builder.SetOutputDirectory(path.c_str());
      }
    if(arg.find("-B",0) != std::string::npos)
      {
      std::string path = arg.substr(2);
      builder.SetOutputHomeDirectory(path.c_str());
      std::cout << "set output home to " << path.c_str() << std::endl;
      }
    }
}


int main(int ac, char** av)
{
  if(ac < 3)
    {
    std::cerr << "Usage: " << av[0] << 
      " CMakeLists.txt -[DSP|DSW] -Hinsighthome -Dcurrentdir"
      " -Ooutput directory" << std::endl;
    return -1;
    }
  std::string arg = av[2];
  cmMakefile builder;
  SetArgs(builder, ac, av);
  cmMSProjectGenerator* pg = new cmMSProjectGenerator;
  if(arg.find("-DSP", 0) != std::string::npos)
    {
    pg->SetBuildDSP();
    }
  else
    {
    pg->SetBuildDSW();
    }
  builder.SetMakefileGenerator(pg);
  builder.ReadMakefile(av[1]);
  builder.GenerateMakefile();
  return 0;
}