Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f50a227c authored by ADILI Robin's avatar ADILI Robin
Browse files

remove specific libraries for windows 3.6

parent 870024ef
No related branches found
No related tags found
No related merge requests found
......@@ -26,14 +26,6 @@ class FBXSDKPyProject(Project):
)
options.append(win_libs_option)
win_py36_libs_option = Option(
"win_py36_libraries",
help="a list of libraries needed on the windows platform for Python <=3.6",
option_type=list,
metavar="LIST",
)
options.append(win_py36_libs_option)
linux_libs_option = Option(
"linux_libraries",
help="a list of libraries needed on the linux platform",
......@@ -60,10 +52,7 @@ class FBXSDKPyProject(Project):
libraries = []
if sys.platform == "win32":
if sys.version_info.major == 3 and sys.version_info.minor < 7:
libraries = self.win_py36_libraries
else:
libraries = self.win_libraries
libraries = self.win_libraries
elif sys.platform == "linux":
libraries = self.linux_libraries
else:
......
......@@ -21,6 +21,5 @@ minimum-glibc-version = "2.17"
linux-libraries = ["xml2", "z"]
linux-static-libraries = ["build/fbxsdk/lib/all/x64/release/libfbxsdk.a"]
win-libraries = ["libfbxsdk-md", "zlib-md", "libxml2-md", "Advapi32", "Wininet"]
win-py36-libraries = ["libfbxsdk-mt", "zlib-mt", "libxml2-mt", "Advapi32", "Wininet"]
builder-factory = "builder.py"
sdist-excludes = ["Dockerfile", "buildall.sh", "build_wheels.sh", "build_wheels.bat"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment