mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 09:49:01 +08:00
90 lines
3.0 KiB
CMake
90 lines
3.0 KiB
CMake
include(${CMAKE_TRIPLET_FILE})
|
|
|
|
# Get architecture params
|
|
set(PROJECT_ARCH "x64")
|
|
set(PROJECT_ARCH_BITS "${PROJECT_ARCH}")
|
|
if(TRIPLET_SYSTEM_ARCH MATCHES "x86")
|
|
set(PROJECT_ARCH "Win32")
|
|
set(PROJECT_ARCH_BITS "x32")
|
|
elseif(TRIPLET_SYSTEM_ARCH MATCHES "arm")
|
|
message(FATAL_ERROR "ARM not supported")
|
|
endif(TRIPLET_SYSTEM_ARCH MATCHES "x86")
|
|
|
|
include(vcpkg_common_functions)
|
|
find_program(GIT git)
|
|
|
|
set(GIT_URL "https://github.com/erincatto/Box2D.git")
|
|
set(GIT_REF "374664b")
|
|
|
|
if(NOT EXISTS "${DOWNLOADS}/box2d.git")
|
|
message(STATUS "Cloning")
|
|
vcpkg_execute_required_process(
|
|
COMMAND ${GIT} clone --bare ${GIT_URL} ${DOWNLOADS}/box2d.git
|
|
WORKING_DIRECTORY ${DOWNLOADS}
|
|
LOGNAME clone
|
|
)
|
|
endif(NOT EXISTS "${DOWNLOADS}/box2d.git")
|
|
message(STATUS "Cloning done")
|
|
|
|
if(NOT EXISTS "${CURRENT_BUILDTREES_DIR}/src/.git")
|
|
message(STATUS "Adding worktree")
|
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR})
|
|
vcpkg_execute_required_process(
|
|
COMMAND ${GIT} worktree add -f --detach ${CURRENT_BUILDTREES_DIR}/src ${GIT_REF}
|
|
WORKING_DIRECTORY ${DOWNLOADS}/box2d.git
|
|
LOGNAME worktree
|
|
)
|
|
endif(NOT EXISTS "${CURRENT_BUILDTREES_DIR}/src/.git")
|
|
message(STATUS "Adding worktree done")
|
|
|
|
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/)
|
|
|
|
# Put the licence and readme files where vcpkg expects it
|
|
message(STATUS "Packaging license")
|
|
file(COPY ${SOURCE_PATH}/README.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/box2d)
|
|
file(COPY ${SOURCE_PATH}/Box2D/License.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/box2d)
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/box2d/License.txt ${CURRENT_PACKAGES_DIR}/share/box2d/copyright)
|
|
message(STATUS "Packaging license done")
|
|
|
|
# Building:
|
|
set(PROJECT "./Box2D/Build/vs2015/Box2D.vcxproj")
|
|
set(OUTPUTS_PATH "${SOURCE_PATH}/Box2D/Build/vs2015/bin/${PROJECT_ARCH_BITS}")
|
|
|
|
foreach(TYPE "Release" "Debug")
|
|
message(STATUS "Building ${TARGET_TRIPLET}-${TYPE}")
|
|
vcpkg_execute_required_process(
|
|
COMMAND "devenv.exe"
|
|
"./Box2D/Build/vs2015/Box2D.sln"
|
|
/Build "${TYPE}|${PROJECT_ARCH}"
|
|
/Project "${PROJECT}"
|
|
/Projectconfig "${TYPE}|${PROJECT_ARCH}"
|
|
WORKING_DIRECTORY ${SOURCE_PATH}
|
|
LOGNAME build-${TARGET_TRIPLET}-${TYPE}
|
|
)
|
|
message(STATUS "Building ${TARGET_TRIPLET}-${TYPE} done")
|
|
|
|
set(TARGET_PATH "${CURRENT_PACKAGES_DIR}")
|
|
if(TYPE STREQUAL Debug)
|
|
set(TARGET_PATH "${CURRENT_PACKAGES_DIR}/debug")
|
|
endif(TYPE STREQUAL Debug)
|
|
|
|
message(STATUS "Packaging ${TARGET_TRIPLET}-${TYPE} lib")
|
|
file(
|
|
INSTALL ${OUTPUTS_PATH}/${TYPE}/
|
|
DESTINATION ${TARGET_PATH}/lib
|
|
FILES_MATCHING PATTERN "*.lib"
|
|
)
|
|
file(RENAME ${TARGET_PATH}/lib/Box2D.lib ${TARGET_PATH}/lib/box2d.lib)
|
|
message(STATUS "Packaging ${TARGET_TRIPLET}-${TYPE} lib done")
|
|
endforeach(TYPE "Release" "Debug")
|
|
|
|
message(STATUS "Packaging headers")
|
|
file(
|
|
COPY ${SOURCE_PATH}/Box2D/Box2D
|
|
DESTINATION ${CURRENT_PACKAGES_DIR}/include
|
|
PATTERN "*.h"
|
|
)
|
|
message(STATUS "Packaging headers done")
|
|
|
|
vcpkg_copy_pdbs()
|