vcpkg/ports/redshell/portfile.cmake
2017-11-14 12:20:23 +09:00

65 lines
1.7 KiB
CMake

include(vcpkg_common_functions)
if(VCPKG_TARGET_ARCHITECTURE STREQUAL arm)
message(FATAL_ERROR "Error: redshell does not support the ARM architecture.")
endif()
if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL WindowsStore)
message(FATAL_ERROR "Error: redshell does not support UWP builds.")
endif()
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
message("Redshell only supports dynamic library linkage")
set(VCPKG_LIBRARY_LINKAGE "dynamic")
endif()
if(NOT VCPKG_CRT_LINKAGE STREQUAL "dynamic")
message(FATAL_ERROR "Redshell only supports dynamic CRT linkage")
endif()
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/redshell)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Innervate/red-shell-cpp
REF 1.1.2
SHA512 7ed9f2945b55e6cdba9c3e6c1c11e5363ec834924313eb62ac8b077db0a0c556a89b212d1e8319e915b31514371b9d81beaaca06f277f15ad1b80ea2ac071b2e
HEAD_REF master
)
# Header .h
file(COPY
"${SOURCE_PATH}/include/RedShell.h"
DESTINATION ${CURRENT_PACKAGES_DIR}/include/redshell
)
# Debug .lib
file(COPY
"${SOURCE_PATH}/lib/${VCPKG_TARGET_ARCHITECTURE}/debug/RedShell.lib"
DESTINATION ${CURRENT_PACKAGES_DIR}/debug/lib
)
# Release .lib
file(COPY
"${SOURCE_PATH}/lib/${VCPKG_TARGET_ARCHITECTURE}/RedShell.lib"
DESTINATION ${CURRENT_PACKAGES_DIR}/lib
)
# Debug .dll
file(COPY
"${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}/debug/RedShell.dll"
DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin
)
# Release .dll
file(COPY
"${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}/RedShell.dll"
DESTINATION ${CURRENT_PACKAGES_DIR}/bin
)
# Copyright
file(COPY
"${SOURCE_PATH}/LICENSE.txt"
DESTINATION ${CURRENT_PACKAGES_DIR}/share/redshell/copyright
)