mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
15 lines
229 B
D
15 lines
229 B
D
import dshell;
|
|
|
|
int main()
|
|
{
|
|
version (Windows)
|
|
{
|
|
auto cmd = "$DMD -m$MODEL -c $EXTRA_FILES" ~ SEP ~ "issue24111.c";
|
|
run(cmd);
|
|
|
|
import std.process: environment;
|
|
environment.remove("INCLUDE");
|
|
run(cmd);
|
|
}
|
|
return 0;
|
|
}
|