summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Martin Hansen <nielsm@indvikleren.dk>2018-11-01 22:44:27 +0100
committerMichael Lutz <michi@icosahedron.de>2018-11-01 23:20:44 +0100
commit81b2ddd0ab4f2f993f291427c86b009358ba465f (patch)
tree25f8c9693088caf85d4545cc54a45f2df52e340d
parent0c619b7c4b9af55d5191a2410e0fb6091c72ccc8 (diff)
downloadopenttd-81b2ddd0ab4f2f993f291427c86b009358ba465f.tar.xz
Fix: Fluidsynth should not be added to VC project files
-rwxr-xr-xprojects/generate2
1 files changed, 2 insertions, 0 deletions
diff --git a/projects/generate b/projects/generate
index 28fd25552..4351337a2 100755
--- a/projects/generate
+++ b/projects/generate
@@ -74,6 +74,7 @@ enable_dedicated="0"
enable_ai="1"
with_cocoa="0"
enable_directmusic="1"
+enable_fluidsynth="0"
with_threads="1"
file_prefix="..\\\\src\\\\"
@@ -132,6 +133,7 @@ load_main_data() {
"'$os'" != "CYGWIN" && "'$os'" != "MSVC" ) { next; }
if ($0 == "MSVC" && "'$os'" != "MSVC") { next; }
if ($0 == "DIRECTMUSIC" && "'$enable_directmusic'" != "1") { next; }
+ if ($0 == "FLUIDSYNTH" && "'$enable_fluidsynth'" != "1") { next; }
if ($0 == "LIBTIMIDITY" && "'$libtimidity'" == "" ) { next; }
if ($0 == "HAVE_THREAD" && "'$with_threads'" == "0") { next; }