mirror of https://github.com/KLayout/klayout.git
Fixed setup.py after refactoring
This commit is contained in:
parent
254a44a133
commit
ef8f4fbba5
8
setup.py
8
setup.py
|
|
@ -286,14 +286,10 @@ class Config(object):
|
|||
"""
|
||||
if platform.system() == "Windows":
|
||||
if mod == "_tl":
|
||||
return [ "libcurl", "expat", "pthreadVCE2", "zlib", "wsock32" ]
|
||||
elif mod == "_laybasic":
|
||||
return [ "libpng16" ]
|
||||
return [ "libcurl", "expat", "pthreadVCE2", "zlib", "wsock32", "libpng16" ]
|
||||
else:
|
||||
if mod == "_tl":
|
||||
return ['curl', 'expat']
|
||||
elif mod == "_laybasic":
|
||||
return [ 'png' ]
|
||||
return [ "curl", "expat", "png" ]
|
||||
return []
|
||||
|
||||
def link_args(self, mod):
|
||||
|
|
|
|||
Loading…
Reference in New Issue