-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python whl on Windows now installs the dlls to the proper location
- Loading branch information
1 parent
8e77bce
commit c6eb841
Showing
4 changed files
with
50 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,10 +30,6 @@ class BinaryDistribution(Distribution): | |
# this is the input file for cmake. for further details have a look at the | ||
# CMakeLists.txt in this directory. | ||
|
||
data_files_platform = [] | ||
if platform.system() == 'Windows': | ||
data_files_platform = [('ecal',["../bin/Release/ecal_core.dll", "../bin/Release/hdf5.dll"])] | ||
|
||
setuptools.setup ( | ||
name = 'ecal', | ||
version = '@eCAL_VERSION_STRING@', | ||
|
@@ -42,8 +38,8 @@ setuptools.setup ( | |
author = 'Rex Schilasky', | ||
author_email = '[email protected]', | ||
packages = setuptools.find_packages(), | ||
data_files = data_files_platform, | ||
package_data = {'ecal': ['*.pyd', '*.so']}, | ||
data_files = [], | ||
package_data = {'ecal': ['*.pyd', '*.so', '*.dll']}, | ||
install_requires = [ | ||
'protobuf@Protobuf_required_versions@' | ||
], | ||
|