mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-02 06:36:15 +00:00
fix library names for vc71
This commit is contained in:
parent
f005a5d869
commit
5e46ac1b42
18
setup.py
18
setup.py
@ -130,19 +130,14 @@ _include_dirs = [
|
|||||||
'./libtorrent/include/libtorrent',
|
'./libtorrent/include/libtorrent',
|
||||||
]
|
]
|
||||||
|
|
||||||
_libraries = [
|
|
||||||
'boost_filesystem',
|
|
||||||
'boost_date_time',
|
|
||||||
'boost_thread',
|
|
||||||
'boost_python',
|
|
||||||
'pthread',
|
|
||||||
]
|
|
||||||
|
|
||||||
if windows_check():
|
if windows_check():
|
||||||
_extra_link_args += ['-L./win32/lib']
|
_extra_link_args += ['-L./win32/lib']
|
||||||
_include_dirs += ['./win32/include/zlib', 'C:/Program Files/boost/boost_1_34_1']
|
_include_dirs += ['./win32/include/zlib', 'C:/Program Files/boost/boost_1_34_1']
|
||||||
_library_dirs += ['C:/Program Files/boost/boost_1_34_1/lib']
|
_library_dirs += ['C:/Program Files/boost/boost_1_34_1/lib']
|
||||||
_libraries += [
|
_libraries = [
|
||||||
|
'boost_filesystem-vc71-mt-1_34_1',
|
||||||
|
'boost_date_time-vc71-mt-1_34_1',
|
||||||
|
'boost_thread-vc71-mt-1_34_1
|
||||||
'zlib',
|
'zlib',
|
||||||
'ssleay32MT',
|
'ssleay32MT',
|
||||||
'libeay32MT',
|
'libeay32MT',
|
||||||
@ -154,6 +149,11 @@ if windows_check():
|
|||||||
else:
|
else:
|
||||||
_include_dirs += ['/usr/include/python' + python_version]
|
_include_dirs += ['/usr/include/python' + python_version]
|
||||||
_libraries += [
|
_libraries += [
|
||||||
|
'boost_filesystem',
|
||||||
|
'boost_date_time',
|
||||||
|
'boost_thread',
|
||||||
|
'boost_python',
|
||||||
|
'pthread',
|
||||||
'ssl',
|
'ssl',
|
||||||
'z'
|
'z'
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user