Mentions légales du service

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

rename builder and specify it in pyproject.toml

parent 8f99fa01
No related branches found
No related tags found
No related merge requests found
......@@ -29,13 +29,13 @@ from distutils.log import ERROR, INFO, set_threshold
import os
import sys
from .buildable import BuildableModule
from .builder import Builder
from .exceptions import UserException
from .installable import Installable
from sipbuild.buildable import BuildableModule
from sipbuild.builder import Builder
from sipbuild.exceptions import UserException
from sipbuild.installable import Installable
class DistutilsBuilder(Builder):
class FBXSDKBuilder(Builder):
""" The implementation of a distutils-based project builder. """
def build_executable(self, buildable, *, fatal=True):
......
......@@ -5,6 +5,8 @@ import sys
from sipbuild import Option, Project
class FBXSDKPyProject(Project):
""" A project that adds an additional configuration options to specify
the locations of the fib header file and library.
......
......@@ -22,3 +22,4 @@ 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"
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