summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorneonloop2021-05-07 20:00:12 +0000
committerneonloop2021-05-07 20:00:12 +0000
commit7f6002caba3f0a6749820c2772161caf55b8d267 (patch)
tree1ed4bdd8c9ac897d1a3f77c223c1fd286dded458 /src/config.h
downloaduqm-7f6002caba3f0a6749820c2772161caf55b8d267.tar.gz
uqm-7f6002caba3f0a6749820c2772161caf55b8d267.tar.bz2
uqm-7f6002caba3f0a6749820c2772161caf55b8d267.zip
Initial commit (uqm-0.8.0)
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
new file mode 100644
index 0000000..f2ef1d8
--- /dev/null
+++ b/src/config.h
@@ -0,0 +1,21 @@
+/* This file contains some compile-time configuration options.
+ */
+
+#ifdef _MSC_VER
+ /* In this case, build.sh is not run to generate a config file, so
+ * we use a default file config_vc6.h instead.
+ * If you want anything else than the defaults, you'll have to edit
+ * that file manually. */
+# include "config_vc6.h"
+#elif defined(__SYMBIAN32__)
+# include "symbian/config.h"
+#elif defined (__MINGW32__) || defined (__CYGWIN__)
+ /* If we're compiling on MS Windows using build.sh, use
+ * config_win.h, generated from src/config_win.h.in. */
+# include "config_win.h"
+#else
+ /* If we're compiling in unix, use config_unix.h, generated from
+ * src/config_unix.h.in by build.sh. */
+# include "config_unix.h"
+#endif
+