Skip to content
Snippets Groups Projects
Commit cb4dd875 authored by Amorilia's avatar Amorilia
Browse files

adding cygwin support

parent 6c97f029
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,11 @@ if sys.platform == 'linux2' or sys.platform == 'linux-i386':
python_libpath = [sysconfig.get_python_lib (0, 1) + '/config']
python_include = [sysconfig.get_python_inc ()]
cppflags = '-fPIC'
elif sys.platform == 'cygwin':
python_lib = ['python%d.%d' % sys.version_info[0:2]]
python_libpath = [sysconfig.get_python_lib (0, 1) + '/config']
python_include = [sysconfig.get_python_inc ()]
cppflags = ''
elif sys.platform == 'win32':
python_include = [sysconfig.get_python_inc()]
python_libpath = [sysconfig.get_python_lib(1, 1) + '/../libs']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment