예제 #1
0
def _build_linux(working_directory_path, root_project_path):
    source_folder_path=os.path.join(root_project_path, 'Libs/NVTT')

    build_utils.build_and_copy_libraries_linux_cmake(
        os.path.join(working_directory_path, '_build'),
        source_folder_path,
        root_project_path,
        target='all',
        lib_name='libdxt.a')
    
    _copy_headers(source_folder_path, root_project_path)
예제 #2
0
def _build_linux(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_linux_cmake(
        gen_folder_path=os.path.join(working_directory_path, 'gen'),
        source_folder_path=source_folder_path,
        root_project_path=root_project_path,
        target="all",
        lib_name='libpng.a')

    _copy_headers(source_folder_path, root_project_path)
예제 #3
0
def _build_linux(working_directory_path, root_project_path):
    source_folder_path = _download(working_directory_path)
    _patch_sources(source_folder_path)

    build_utils.build_and_copy_libraries_linux_cmake(
        os.path.join(source_folder_path, '_build'),
        source_folder_path,
        root_project_path,
        target='all',
        lib_name='libgmock.a',
        target_lib_subdir='googlemock')

    _copy_headers(source_folder_path, root_project_path)
예제 #4
0
def _build_linux(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_linux_cmake(
        os.path.join(working_directory_path, 'gen'),
        source_folder_path,
        root_project_path,
        target='all',
        lib_name='libfreetype.a',
        cmake_additional_args=_cmake_args())

    _copy_headers(source_folder_path, root_project_path)
예제 #5
0
def _build_linux(working_directory_path, root_project_path):
    # TODO: check building
    source_folder_path = _download_and_extract(working_directory_path)
    _patch_sources(source_folder_path, working_directory_path)

    build_utils.build_and_copy_libraries_linux_cmake(os.path.join(
        working_directory_path, 'gen'),
                                                     source_folder_path,
                                                     root_project_path,
                                                     target='all',
                                                     lib_name='libmongodb.a')

    _copy_headers(source_folder_path, root_project_path)