mirror of https://gitlab.com/basile.b/dexed.git
updated SymString and cleaner tests
This commit is contained in:
parent
c1d1b2c30c
commit
30ddf44dfb
|
@ -7,7 +7,7 @@ object CurrentProject: TCEProject
|
|||
outputOptions.boundsCheck = offAlways
|
||||
outputOptions.optimizations = True
|
||||
outputOptions.release = True
|
||||
pathsOptions.outputFilename = '<CPP>..\..\cleaner.exe'
|
||||
pathsOptions.outputFilename = '<CAP>cleaner.exe'
|
||||
preBuildProcess.options = []
|
||||
preBuildProcess.showWindow = swoNone
|
||||
postBuildProcess.executable = '<CAP>cleaner.exe'
|
||||
|
|
|
@ -1,9 +1,15 @@
|
|||
module runnable;
|
||||
module expandSymString;
|
||||
|
||||
import std.stdio;
|
||||
import std.getopt;
|
||||
|
||||
// pass --a=<CPF> --b=<CPP> --c=<CPR> --d=<CFF> --e=<CFP> --f=<CI> --g=<CAF> --h=<CAP> as parameters in "Run file..."
|
||||
/*
|
||||
pass:
|
||||
|
||||
--a=<CPF> --b=<CPP> --c=<CPR> --d=<CFF> --e=<CFP> --f=<CI> --g=<CAF> --h=<CAP>
|
||||
|
||||
as parameters in "Run, Compile and Run file..."
|
||||
*/
|
||||
void main(string args[])
|
||||
{
|
||||
|
||||
|
@ -13,7 +19,6 @@ void main(string args[])
|
|||
expanded = "";
|
||||
getopt(args, std.getopt.config.passThrough, c, &expanded);
|
||||
if (expanded.length != 0)
|
||||
writeln(expanded);
|
||||
writeln(c, " : ", expanded);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue