From b293352917db209adb61040966edfa79a526360a Mon Sep 17 00:00:00 2001 From: Naoto Kondo Date: Sat, 12 Jun 2021 18:13:21 +0900 Subject: [PATCH] fix windows build --- CMakeLists.txt | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1e7a361..11dd1a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,5 +40,6 @@ install( FILES "${NDI_DIR}/Bin/x64/Processing.NDI.Lib.x64.dll" "${NDI_DIR}/Bin/x64/Processing.NDI.Lib.Licenses.txt" + DESTINATION ${CMAKE_INSTALL_PREFIX} ) endif() diff --git a/setup.py b/setup.py index d398178..75b2c8a 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ setup( 'build_py': build_py, 'build_ext': build_ext}, packages=[''], - package_data={'':['*.so', '*.dll', '*.dylib']}, + package_data={'':['*.so', '*.pyd', '*.dll', '*.dylib', '*.txt']}, include_package_data=False, python_requires='>=3.4', zip_safe=False