|
Revision 6, 1.0 kB
(checked in by jcc7, 3 years ago)
|
Made more progress in developing convertToWiki and added some files.
|
| Line | |
|---|
| 1 |
@echo off |
|---|
| 2 |
rem dmd |
|---|
| 3 |
dmd ddoc.d -D -c -o- |
|---|
| 4 |
dmd ddoc2.d -D -c -o- |
|---|
| 5 |
dmd example1.d -D -c -o- |
|---|
| 6 |
dmd example2.d -D -c -o- |
|---|
| 7 |
dmd ddoc.d -Dfddoc_xhtml.html xhtml.ddoc -D -c -o- |
|---|
| 8 |
dmd ddoc2.d -Dfddoc2_xhtml.html xhtml.ddoc -D -c -o- |
|---|
| 9 |
dmd example1.d -Dfexample1_xhtml.html xhtml.ddoc -D -c -o- |
|---|
| 10 |
dmd example2.d -Dfexample2_xhtml.html xhtml.ddoc -D -c -o- |
|---|
| 11 |
|
|---|
| 12 |
dmd priv_test.d -D -c -o- |
|---|
| 13 |
dmd priv_test.d -Dfpriv_test_v2.html -D -c -o- -version=testVersion |
|---|
| 14 |
dmd priv_test.d -Dfpriv_test_xhtml.html xhtml.ddoc -D -c -o- |
|---|
| 15 |
dmd priv_test.d -Dfpriv_test_v2_xhtml.html -D -c -o- -version=testVersion |
|---|
| 16 |
|
|---|
| 17 |
dmd ex_priv_test.d -Dfex_priv_test.html xhtml.ddoc -D -c -o- |
|---|
| 18 |
dmd ex_priv_test.d -Dfex_priv_test_xhtml.html xhtml.ddoc -D -c -o- |
|---|
| 19 |
pause |
|---|
| 20 |
|
|---|