mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 17:18:59 +08:00
3e3484ad70
* [pthread-stubs] allow building release only * Address review comment
54 lines
2.2 KiB
CMake
54 lines
2.2 KiB
CMake
set(VCPKG_POLICY_EMPTY_INCLUDE_FOLDER enabled)
|
|
vcpkg_from_gitlab(
|
|
GITLAB_URL https://gitlab.freedesktop.org/xorg
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO lib/pthread-stubs
|
|
REF 50f0755a7f894acae168f19c66e52a3f139ca4ec # 0.4.0
|
|
SHA512 15fcb2144a8abb7b9b1b8f6d9732759351268fb440c7a59380b0ca6ddf48b74a37ce5afbf777ce58fc1993df0c8d6ffb82e452800ce2fcaf16edcbcc1750e338
|
|
HEAD_REF master
|
|
)
|
|
|
|
vcpkg_configure_make(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
AUTOCONFIG
|
|
)
|
|
|
|
vcpkg_install_make()
|
|
vcpkg_fixup_pkgconfig(SYSTEM_LIBRARIES pthread)
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
# Handle copyright
|
|
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
|
|
|
set(_file "${CURRENT_PACKAGES_DIR}/lib/pkgconfig/pthread-stubs.pc")
|
|
file(READ "${_file}" _contents)
|
|
string(REPLACE "Cflags: -pthread" "Cflags: " _contents "${_contents}")
|
|
if(EXISTS "${CURRENT_INSTALLED_DIR}/lib/pthreadVC3.lib")
|
|
string(REPLACE "Libs: -pthread" "Libs: -lpthreadVC3" _contents "${_contents}")
|
|
endif()
|
|
if(EXISTS "${CURRENT_INSTALLED_DIR}/lib/pthreadGC3.lib")
|
|
string(REPLACE "Libs: -pthread" "Libs: -lpthreadGC3" _contents "${_contents}")
|
|
endif()
|
|
file(WRITE "${_file}" "${_contents}")
|
|
|
|
if(NOT VCPKG_BUILD_TYPE)
|
|
set(_file "${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/pthread-stubs.pc")
|
|
file(READ "${_file}" _contents)
|
|
string(REPLACE "Cflags: -pthread" "Cflags: " _contents "${_contents}")
|
|
if(EXISTS "${CURRENT_INSTALLED_DIR}/debug/lib/pthreadVC3.lib")
|
|
string(REPLACE "Libs: -pthread" "Libs: -lpthreadVC3" _contents "${_contents}")
|
|
endif()
|
|
if(EXISTS "${CURRENT_INSTALLED_DIR}/debug/lib/pthreadGC3.lib")
|
|
string(REPLACE "Libs: -pthread" "Libs: -lpthreadGC3" _contents "${_contents}")
|
|
endif()
|
|
if(EXISTS "${CURRENT_INSTALLED_DIR}/debug/lib/pthreadVC3d.lib")
|
|
string(REPLACE "Libs: -pthread" "Libs: -lpthreadVC3d" _contents "${_contents}")
|
|
endif()
|
|
if(EXISTS "${CURRENT_INSTALLED_DIR}/debug/lib/pthreadGC3d.lib")
|
|
string(REPLACE "Libs: -pthread" "Libs: -lpthreadGC3d" _contents "${_contents}")
|
|
endif()
|
|
file(WRITE "${_file}" "${_contents}")
|
|
endif()
|