ultimatepp/bazaar/Py/Py.h
kohait 6dbb8ad60d bazaar: BoostPyTest: first attemt to structurize the export, more to be done, cleanup of unnessecary using namespace's
git-svn-id: svn://ultimatepp.org/upp/trunk@3360 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-04-19 15:05:45 +00:00

22 lines
468 B
C

#ifndef _Python_Python_h
#define _Python_Python_h
//this drops any auto linking/inclusion of python/python_d libs
//use this when we use those boost python prelinked dlls
//which link to python27.dll even in debug mode
#define MS_NO_COREDLL 1
#define Py_ENABLE_SHARED 1
#ifdef flagBOOSTPY
// #ifdef _DEBUG
// #define BOOST_DEBUG_PYTHON 1
// #endif
#include <boost/python.hpp>
#else
#include <Python.h>
#endif
#include <Core/Core.h>
#endif