-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
47 lines (36 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import glob
import sys
source_files = ["enet.pyx"]
_enet_files = glob.glob("enet/*.c")
if not _enet_files:
print("You need to download and extract the enet 1.3 source to enet/")
print("Download the source from: http://enet.bespin.org/Downloads.html")
print("See the README for more instructions")
sys.exit(1)
source_files.extend(_enet_files)
define_macros = [('HAS_POLL', None),
('HAS_FCNTL', None),
('HAS_MSGHDR_FLAGS', None),
('HAS_SOCKLEN_T', None) ]
libraries = []
if sys.platform == 'win32':
define_macros.extend([('WIN32', None)])
libraries.extend(['ws2_32', 'Winmm'])
if sys.platform != 'darwin':
define_macros.extend([('HAS_GETHOSTBYNAME_R', None), ('HAS_GETHOSTBYADDR_R', None)])
ext_modules = [
Extension(
"enet",
extra_compile_args=["-O3"],
sources=source_files,
include_dirs=["enet/include/"],
define_macros=define_macros,
libraries=libraries)]
setup(
name = 'enet',
cmdclass = {'build_ext': build_ext},
ext_modules = ext_modules
)