summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mingw.bld2
-rw-r--r--opttest.stage18
2 files changed, 19 insertions, 1 deletions
diff --git a/mingw.bld b/mingw.bld
index 407047d..6b6cbae 100644
--- a/mingw.bld
+++ b/mingw.bld
@@ -58,7 +58,7 @@ target "stage.exe"
58 58
59 CXXFLAGS += "-O2 -frtti -fexceptions -Wall -Ilibbu++/support/windows -Isrc -Ilibgats"; 59 CXXFLAGS += "-O2 -frtti -fexceptions -Wall -Ilibbu++/support/windows -Isrc -Ilibgats";
60 60
61 LDFLAGS += "-enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -mthreads -Wl -lmingw32 -Llibbu++ -lbu++win -Llibbu++/support/windows -lbz2 -Wl,-subsystem,console -Llibgats -lgatswin"; 61 LDFLAGS += "-enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -mthreads -Wl -lmingw32 -Llibbu++ -Llibbu++/support/windows -lbz2 -Wl,-subsystem,console -Llibgats -lgatswin -lbu++win -lwsock32";
62 62
63 CXXFLAGS += "-Ilibbu++"; 63 CXXFLAGS += "-Ilibbu++";
64} 64}
diff --git a/opttest.stage b/opttest.stage
new file mode 100644
index 0000000..325a197
--- /dev/null
+++ b/opttest.stage
@@ -0,0 +1,18 @@
1option situation <<start>>
2{
3 option: "Begin the game"
4 {
5 display("the game has begun.");
6 }
7
8 option: "I'm not ready yet"
9 {
10 display("Yup, that's what I thought.");
11 }
12
13 option: "Quit the game"
14 {
15 display("Ok...fine...");
16 exit();
17 }
18}