Ejemplo n.º 1
0
def _build_macos(working_directory_path, root_project_path):
    source_folder_path = os.path.join(root_project_path, get_download_info())

    build_utils.build_and_copy_libraries_macos_cmake(
        os.path.join(working_directory_path,
                     'gen'), source_folder_path, root_project_path,
        'bullet.xcodeproj', 'bullet', 'libbullet.a', 'libbullet.a')
Ejemplo n.º 2
0
def _build_macos(working_directory_path, root_project_path):
    source_folder_path = _download_and_extract(working_directory_path)
    _patch_sources(source_folder_path, working_directory_path)

    build_utils.build_and_copy_libraries_macos_cmake(
        os.path.join(working_directory_path, 'gen'), source_folder_path,
        root_project_path, 'psd.xcodeproj', 'psd', 'libpsd.a', 'libpsd.a')

    _copy_headers(source_folder_path, root_project_path)
Ejemplo n.º 3
0
def _build_macos(working_directory_path, root_project_path):
    source_folder_path = _download(working_directory_path)
    _patch_sources(source_folder_path)

    build_utils.build_and_copy_libraries_macos_cmake(
        os.path.join(source_folder_path, '_build'),
        source_folder_path,
        root_project_path,
        'googletest-distribution.xcodeproj', 'gmock',
        'libgmock.a', 'libgmock.a',
        target_lib_subdir='googlemock')

    _copy_headers(source_folder_path, root_project_path)
Ejemplo n.º 4
0
def _build_macos(working_directory_path, root_project_path):
    source_folder_path = _download_and_extract(working_directory_path)
    _patch_sources(source_folder_path, working_directory_path)

    build_utils.build_and_copy_libraries_macos_cmake(
        os.path.join(working_directory_path, 'gen'),
        source_folder_path,
        root_project_path,
        'freetype.xcodeproj',
        'freetype',
        'libfreetype.a',
        'libfreetype_macos.a',
        cmake_additional_args=_cmake_args())

    _copy_headers(source_folder_path, root_project_path)
Ejemplo n.º 5
0
def _build_macos(working_directory_path, root_project_path):
    source_folder_path = _download_and_extract(working_directory_path)
    _patch_sources(source_folder_path, working_directory_path)

    build_utils.build_and_copy_libraries_macos_cmake(
        os.path.join(working_directory_path, 'gen'),
        source_folder_path,
        root_project_path,
        'Project.xcodeproj',
        'spine-c',
        'libspine-c.a',
        'spine.a',
        output_libs_path='Modules/Spine/Libs/lib')

    _copy_headers(source_folder_path, root_project_path)