mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
300 B
D
11 lines
300 B
D
import dshell;
|
|
|
|
int main()
|
|
{
|
|
Vars.set("lib", "$OUTPUT_BASE/dir with spaces/b$LIBEXT");
|
|
|
|
run("$DMD -m$MODEL -of$lib -lib $EXTRA_FILES/linker_flag_with_spaces_b.d");
|
|
run("$DMD -m$MODEL -I$EXTRA_FILES -of$OUTPUT_BASE/a$EXE $EXTRA_FILES/linker_flag_with_spaces_a.d -L$lib");
|
|
|
|
return 0;
|
|
}
|