Changeset 299


Ignore:
Timestamp:
Nov 2, 2006, 1:18:43 PM (19 years ago)
Author:
garonne
Message:

build strategy macro extension

Location:
CMT/v1rc19/source
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/v1rc19/source/cmt_syntax.cxx

    r295 r299  
    169169    value =  w;
    170170    Symbol::expand(value);
    171     cout <<"# strategy: "<<value<<endl;           
    172171
    173172    if (value == "prototypes")
     
    248247          {
    249248            if (project != 0) project->set_strategy (strategy, value, "");
    250             //(project->get_use())->get_package_name ());
    251249          }
    252250        else
     
    976974    bool result = true;
    977975
    978     value = w;
    979 
    980     if (w == "config")
     976    value =  w;
     977    Symbol::expand(value);
     978
     979
     980    if (value == "config")
    981981      {
    982982        strategy = "SetupConfig";
    983983      }
    984     else if (w == "no_config")
     984    else if (value == "no_config")
    985985      {
    986986        strategy = "SetupConfig";
    987987      }
    988     else if (w == "root")
     988    else if (value == "root")
    989989      {
    990990        strategy = "SetupRoot";
    991991      }
    992     else if (w == "no_root")
     992    else if (value == "no_root")
    993993      {
    994994        strategy = "SetupRoot";
    995995      }
    996     else if (w == "cleanup")
     996    else if (value == "cleanup")
    997997      {
    998998        strategy = "SetupCleanup";
    999999      }
    1000     else if (w == "no_cleanup")
     1000    else if (value == "no_cleanup")
    10011001      {
    10021002        strategy = "SetupCleanup";
     
    10801080
    10811081    value = w;
    1082 
    1083     if (w == "with_version_directory")
     1082    Symbol::expand(value);
     1083
     1084    if (value == "with_version_directory")
    10841085      {
    10851086        strategy = "VersionDirectory";
    10861087      }
    1087     else if (w == "without_version_directory")
     1088    else if (value == "without_version_directory")
    10881089      {
    10891090        strategy = "VersionDirectory";
  • CMT/v1rc19/source/cmt_version.h

    r289 r299  
    99
    1010//#define CMTVERSION "v1r18p20050901"
    11 #define CMTVERSION "v1rbeta20p20061025"
     11#define CMTVERSION "v1rc19"
    1212
    1313#endif
Note: See TracChangeset for help on using the changeset viewer.