From 19aba17708e8aa2e072ae3c69a58ff92c8f80090 Mon Sep 17 00:00:00 2001
From: Spaghetti Code <spaghetticode@cock.li>
Date: Mon, 6 Feb 2017 20:31:59 -0800
Subject: [PATCH] Update Windows Compiler

Compile.bat will terminate automatically.
Compile_debug.bat will terminate only following a key press, allowing you to examine any TweeGo errors.
---
 compile_debug.bat | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 compile_debug.bat

diff --git a/compile_debug.bat b/compile_debug.bat
new file mode 100644
index 00000000000..75e3bc8dcc9
--- /dev/null
+++ b/compile_debug.bat
@@ -0,0 +1,11 @@
+@echo off
+:: Free Cities Basic Compiler - Windows x86_64
+:: Will wait for keypress before terminating.
+
+:: Uses embedded Python 3.5.3 x86_64
+:: Will add all *.tw files to StoryIncludes.
+"%~dp0devTools\python-3.5.3\python.exe" "%~dp0devTools\scripts\includes.py" "src\config\start.tw.proto" "src\config\start.tw" "src" "%*"
+
+CALL "%~dp0devTools\tweeGo\tweego.exe" -o "%~dp0bin/FC.html" "%~dp0src\config\start.tw"
+ECHO Done
+PAUSE
-- 
GitLab