aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/pythoncore/pythonheaderwrapper.h
diff options
context:
space:
mode:
authorGravatar Alexey Sokolov2017-05-24 10:04:20 +0100
committerGravatar Dessa2017-05-24 11:04:20 +0200
commitf5d172c869295ef9fff2e3de524690e523dc5d42 (patch)
treea85ed69ce7bf9234729e4e99028337c1ae3c6829 /src/modules/pythoncore/pythonheaderwrapper.h
parentappveyor: fix zlib VS version (diff)
downloadKVIrc-f5d172c869295ef9fff2e3de524690e523dc5d42.tar.gz
KVIrc-f5d172c869295ef9fff2e3de524690e523dc5d42.tar.bz2
KVIrc-f5d172c869295ef9fff2e3de524690e523dc5d42.zip
Build also in debug mode for windows (#2192)
* Build also in debug mode for windows See #2191 * Don't mix /Od and -O2 on windows build. -O2 comes from perl * Reindent perlcore CMakeLists * Fix debug python build on windows * Rearrange environment vars in appveyor * Try to publish pdb files too * install qts and kvirc's debug pdbs in debug config * use TARGET_PDB_FILE instead
Diffstat (limited to 'src/modules/pythoncore/pythonheaderwrapper.h')
-rw-r--r--src/modules/pythoncore/pythonheaderwrapper.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/modules/pythoncore/pythonheaderwrapper.h b/src/modules/pythoncore/pythonheaderwrapper.h
new file mode 100644
index 000000000..47f60d361
--- /dev/null
+++ b/src/modules/pythoncore/pythonheaderwrapper.h
@@ -0,0 +1,14 @@
+#ifndef _PYTHONHEADERWRAPPER_H_
+#define _PYTHONHEADERWRAPPER_H_
+
+// See http://stackoverflow.com/questions/16200997/why-doesnt-include-python-h-work and http://stackoverflow.com/questions/19716859/puzzling-dependency-of-boost-python-1-54-debug-build-to-python27-lib-on-window
+
+#if defined(_DEBUG) && defined(_MSC_VER)
+# undef _DEBUG
+# include <Python.h>
+# define _DEBUG 1
+#else
+# include <Python.h>
+#endif
+
+#endif