early-access version 2853
This commit is contained in:
13
externals/vcpkg/ports/usd/fix_build-location.patch
vendored
Executable file
13
externals/vcpkg/ports/usd/fix_build-location.patch
vendored
Executable file
@@ -0,0 +1,13 @@
|
||||
diff --git a/cmake/macros/Private.cmake b/cmake/macros/Private.cmake
|
||||
index 3825e2a19..0a79b49bd 100644
|
||||
--- a/cmake/macros/Private.cmake
|
||||
+++ b/cmake/macros/Private.cmake
|
||||
@@ -1238,7 +1238,7 @@ function(_pxr_library NAME)
|
||||
MFB_PACKAGE_NAME=${PXR_PACKAGE}
|
||||
MFB_ALT_PACKAGE_NAME=${PXR_PACKAGE}
|
||||
MFB_PACKAGE_MODULE=${pythonModuleName}
|
||||
- PXR_BUILD_LOCATION=usd
|
||||
+ PXR_BUILD_LOCATION=../lib/usd
|
||||
PXR_PLUGIN_BUILD_LOCATION=../plugin/usd
|
||||
${pxrInstallLocation}
|
||||
${pythonModulesEnabled}
|
||||
83
externals/vcpkg/ports/usd/portfile.cmake
vendored
Executable file
83
externals/vcpkg/ports/usd/portfile.cmake
vendored
Executable file
@@ -0,0 +1,83 @@
|
||||
# Don't file if the bin folder exists. We need exe and custom files.
|
||||
SET(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO PixarAnimationStudios/USD
|
||||
REF 71b4baace2044ea4400ba802e91667f9ebe342f0 # v20.08
|
||||
SHA512 0f23b84d314d88d3524f22ebc344e2b506cb7e8ac064726df432a968a4bae0fd2249e968bd10845de9067290eaaa3f8c9e2a483551ffc06b826f3eba816061a9
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
fix_build-location.patch
|
||||
)
|
||||
|
||||
vcpkg_find_acquire_program(PYTHON2)
|
||||
get_filename_component(PYTHON2_DIR "${PYTHON2}" DIRECTORY)
|
||||
vcpkg_add_to_path("${PYTHON2_DIR}")
|
||||
|
||||
IF (VCPKG_TARGET_IS_WINDOWS)
|
||||
ELSE()
|
||||
file(REMOVE ${SOURCE_PATH}/cmake/modules/FindTBB.cmake)
|
||||
ENDIF()
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
OPTIONS
|
||||
-DPXR_BUILD_ALEMBIC_PLUGIN:BOOL=OFF
|
||||
-DPXR_BUILD_EMBREE_PLUGIN:BOOL=OFF
|
||||
-DPXR_BUILD_IMAGING:BOOL=OFF
|
||||
-DPXR_BUILD_MAYA_PLUGIN:BOOL=OFF
|
||||
-DPXR_BUILD_MONOLITHIC:BOOL=OFF
|
||||
-DPXR_BUILD_TESTS:BOOL=OFF
|
||||
-DPXR_BUILD_USD_IMAGING:BOOL=OFF
|
||||
-DPXR_ENABLE_PYTHON_SUPPORT:BOOL=OFF
|
||||
-DPXR_BUILD_EXAMPLES:BOOL=OFF
|
||||
-DPXR_BUILD_TUTORIALS:BOOL=OFF
|
||||
-DPXR_BUILD_USD_TOOLS:BOOL=OFF
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
file(
|
||||
RENAME
|
||||
"${CURRENT_PACKAGES_DIR}/pxrConfig.cmake"
|
||||
"${CURRENT_PACKAGES_DIR}/cmake/pxrConfig.cmake")
|
||||
|
||||
vcpkg_fixup_cmake_targets(CONFIG_PATH cmake TARGET_PATH share/pxr)
|
||||
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
# Remove duplicates in debug folder
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
|
||||
# Handle copyright
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
||||
|
||||
# Move all dlls to bin
|
||||
file(GLOB RELEASE_DLL ${CURRENT_PACKAGES_DIR}/lib/*.dll)
|
||||
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/bin)
|
||||
file(GLOB DEBUG_DLL ${CURRENT_PACKAGES_DIR}/debug/lib/*.dll)
|
||||
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/debug/bin)
|
||||
foreach(CURRENT_FROM ${RELEASE_DLL} ${DEBUG_DLL})
|
||||
string(REPLACE "/lib/" "/bin/" CURRENT_TO ${CURRENT_FROM})
|
||||
file(RENAME ${CURRENT_FROM} ${CURRENT_TO})
|
||||
endforeach()
|
||||
|
||||
function(file_replace_regex filename match_string replace_string)
|
||||
file(READ ${filename} _contents)
|
||||
string(REGEX REPLACE "${match_string}" "${replace_string}" _contents "${_contents}")
|
||||
file(WRITE ${filename} "${_contents}")
|
||||
endfunction()
|
||||
|
||||
# fix dll path for cmake
|
||||
file_replace_regex(${CURRENT_PACKAGES_DIR}/share/pxr/pxrConfig.cmake "/cmake/pxrTargets.cmake" "/pxrTargets.cmake")
|
||||
file_replace_regex(${CURRENT_PACKAGES_DIR}/share/pxr/pxrTargets-debug.cmake "debug/lib/([a-zA-Z0-9_]+)\\.dll" "debug/bin/\\1.dll")
|
||||
file_replace_regex(${CURRENT_PACKAGES_DIR}/share/pxr/pxrTargets-release.cmake "lib/([a-zA-Z0-9_]+)\\.dll" "bin/\\1.dll")
|
||||
|
||||
# fix plugInfo.json for runtime
|
||||
file(GLOB_RECURSE PLUGINFO_FILES ${CURRENT_PACKAGES_DIR}/lib/usd/*/resources/plugInfo.json)
|
||||
file(GLOB_RECURSE PLUGINFO_FILES_DEBUG ${CURRENT_PACKAGES_DIR}/debug/lib/usd/*/resources/plugInfo.json)
|
||||
foreach(PLUGINFO ${PLUGINFO_FILES} ${PLUGINFO_FILES_DEBUG})
|
||||
file_replace_regex(${PLUGINFO} [=["LibraryPath": "../../([a-zA-Z0-9_]+).dll"]=] [=["LibraryPath": "../../../bin/\1.dll"]=])
|
||||
endforeach()
|
||||
22
externals/vcpkg/ports/usd/vcpkg.json
vendored
Executable file
22
externals/vcpkg/ports/usd/vcpkg.json
vendored
Executable file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "usd",
|
||||
"version-string": "20.08",
|
||||
"port-version": 2,
|
||||
"description": "Universal Scene Description (USD) is an efficient, scalable system for authoring, reading, and streaming time-sampled scene description for interchange between graphics applications.",
|
||||
"homepage": "https://github.com/PixarAnimationStudios/USD",
|
||||
"supports": "!x86",
|
||||
"dependencies": [
|
||||
"boost-assign",
|
||||
"boost-crc",
|
||||
"boost-date-time",
|
||||
"boost-filesystem",
|
||||
"boost-format",
|
||||
"boost-multi-index",
|
||||
"boost-program-options",
|
||||
"boost-regex",
|
||||
"boost-system",
|
||||
"boost-vmd",
|
||||
"tbb",
|
||||
"zlib"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user