mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 22:01:37 +08:00
[loguru,libosip2] Fix build check failure on Android platform (#40562)
This commit is contained in:
parent
f2deec1583
commit
f0c8848cde
@ -15,7 +15,7 @@ vcpkg_extract_source_archive(
|
|||||||
PATCHES ${PATCHES}
|
PATCHES ${PATCHES}
|
||||||
)
|
)
|
||||||
|
|
||||||
if(VCPKG_TARGET_IS_WINDOWS)
|
if(VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW)
|
||||||
# Use /Z7 rather than /Zi to avoid "fatal error C1090: PDB API call failed, error code '23': (0x00000006)"
|
# Use /Z7 rather than /Zi to avoid "fatal error C1090: PDB API call failed, error code '23': (0x00000006)"
|
||||||
foreach(VCXPROJ IN ITEMS
|
foreach(VCXPROJ IN ITEMS
|
||||||
"${SOURCE_PATH}/platform/vsnet/osip2.vcxproj"
|
"${SOURCE_PATH}/platform/vsnet/osip2.vcxproj"
|
||||||
@ -39,7 +39,7 @@ if(VCPKG_TARGET_IS_WINDOWS)
|
|||||||
PROJECT_SUBPATH "platform/vsnet/osipparser2.vcxproj"
|
PROJECT_SUBPATH "platform/vsnet/osipparser2.vcxproj"
|
||||||
)
|
)
|
||||||
|
|
||||||
elseif(VCPKG_TARGET_IS_LINUX OR VCPKG_TARGET_IS_OSX)
|
else()
|
||||||
vcpkg_configure_make(SOURCE_PATH "${SOURCE_PATH}")
|
vcpkg_configure_make(SOURCE_PATH "${SOURCE_PATH}")
|
||||||
vcpkg_install_make()
|
vcpkg_install_make()
|
||||||
vcpkg_fixup_pkgconfig()
|
vcpkg_fixup_pkgconfig()
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "libosip2",
|
"name": "libosip2",
|
||||||
"version": "5.3.1",
|
"version": "5.3.1",
|
||||||
|
"port-version": 1,
|
||||||
"description": "oSIP is an LGPL implementation of SIP. It's stable, portable, flexible and compliant! -may be more-! It is used mostly with eXosip2 stack (GPL) which provides simpler API for User-Agent implementation.",
|
"description": "oSIP is an LGPL implementation of SIP. It's stable, portable, flexible and compliant! -may be more-! It is used mostly with eXosip2 stack (GPL) which provides simpler API for User-Agent implementation.",
|
||||||
"homepage": "https://www.gnu.org/software/osip/",
|
"homepage": "https://www.gnu.org/software/osip/",
|
||||||
"supports": "!(windows & arm) & !uwp",
|
"supports": "!(windows & arm) & !uwp",
|
||||||
|
@ -1,55 +0,0 @@
|
|||||||
cmake_minimum_required(VERSION 3.12)
|
|
||||||
|
|
||||||
project(loguru CXX)
|
|
||||||
set(CMAKE_CXX_STANDARD 11)
|
|
||||||
|
|
||||||
option(INSTALL_HEADERS "Install header files" ON)
|
|
||||||
option(BUILD_WITH_FMT "Build with fmt support" OFF)
|
|
||||||
|
|
||||||
set(loguru_headers
|
|
||||||
loguru.hpp
|
|
||||||
)
|
|
||||||
set(loguru_sources
|
|
||||||
loguru.cpp
|
|
||||||
)
|
|
||||||
|
|
||||||
add_library(loguru ${loguru_sources})
|
|
||||||
target_include_directories(loguru PUBLIC
|
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
||||||
$<INSTALL_INTERFACE:include/loguru>)
|
|
||||||
|
|
||||||
if(BUILD_WITH_FMT)
|
|
||||||
target_compile_definitions(loguru PRIVATE LOGURU_USE_FMTLIB=1)
|
|
||||||
find_package(fmt CONFIG REQUIRED)
|
|
||||||
target_link_libraries(loguru PUBLIC fmt::fmt)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(UNIX)
|
|
||||||
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
||||||
find_package(Threads REQUIRED)
|
|
||||||
target_link_libraries(loguru PUBLIC Threads::Threads ${CMAKE_DL_LIBS})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(LOGURU_INCLUDE_INSTALL_DIR include/loguru CACHE PATH "Install directory for headers")
|
|
||||||
if(INSTALL_HEADERS)
|
|
||||||
install(FILES ${loguru_headers} DESTINATION ${LOGURU_INCLUDE_INSTALL_DIR})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(INCLUDE_INSTALL_DIR ${LOGURU_INCLUDE_INSTALL_DIR})
|
|
||||||
|
|
||||||
include(CMakePackageConfigHelpers)
|
|
||||||
configure_package_config_file(loguruConfig.cmake.in
|
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/loguruConfig.cmake
|
|
||||||
INSTALL_DESTINATION share/loguru
|
|
||||||
NO_CHECK_REQUIRED_COMPONENTS_MACRO
|
|
||||||
PATH_VARS INCLUDE_INSTALL_DIR)
|
|
||||||
|
|
||||||
install(TARGETS loguru
|
|
||||||
EXPORT loguruTargets
|
|
||||||
RUNTIME DESTINATION bin
|
|
||||||
LIBRARY DESTINATION lib
|
|
||||||
ARCHIVE DESTINATION lib
|
|
||||||
)
|
|
||||||
|
|
||||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/loguruConfig.cmake DESTINATION share/loguru)
|
|
||||||
install(EXPORT loguruTargets DESTINATION share/loguru)
|
|
@ -1,9 +0,0 @@
|
|||||||
@PACKAGE_INIT@
|
|
||||||
|
|
||||||
if(UNIX)
|
|
||||||
include(CMakeFindDependencyMacro)
|
|
||||||
find_dependency(Threads)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set_and_check(loguru_INCLUDE_DIR "@PACKAGE_INCLUDE_INSTALL_DIR@")
|
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/loguruTargets.cmake")
|
|
@ -1,20 +1,14 @@
|
|||||||
|
if(VCPKG_TARGET_IS_WINDOWS)
|
||||||
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
||||||
|
endif()
|
||||||
vcpkg_from_github(
|
vcpkg_from_github(
|
||||||
OUT_SOURCE_PATH SOURCE_PATH
|
OUT_SOURCE_PATH SOURCE_PATH
|
||||||
REPO emilk/loguru
|
REPO emilk/loguru
|
||||||
REF 9c2fea0d4530657f23259be4132f8101c98b579e #v2.1.0
|
REF 4adaa185883e3c04da25913579c451d3c32cfac1 #v2.1.0
|
||||||
SHA512 49eebf8648f9d29273af76dca0a4e49155daa3664e98979df005e64eb0fa9f4eeb4228245327d469772c51076571acbe39a644eba531444d8676d9709a7e3914
|
SHA512 813c9f9171a828a40270a3ad9f98124586eb56d37f263d55cd1ea6ac997d64431e2ae846f3dc0b477f8bf30873270c53b4bd7e6b6fc52259d2fd36126b24bbe6
|
||||||
HEAD_REF master
|
HEAD_REF master
|
||||||
)
|
)
|
||||||
|
|
||||||
if(VCPKG_TARGET_IS_WINDOWS)
|
|
||||||
file(INSTALL ${SOURCE_PATH}/loguru.hpp DESTINATION ${CURRENT_PACKAGES_DIR}/include/loguru)
|
|
||||||
file(INSTALL ${SOURCE_PATH}/loguru.cpp DESTINATION ${CURRENT_PACKAGES_DIR}/include/loguru)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(VCPKG_TARGET_IS_LINUX OR VCPKG_TARGET_IS_OSX)
|
|
||||||
configure_file(${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt ${SOURCE_PATH}/CMakeLists.txt COPYONLY)
|
|
||||||
configure_file(${CMAKE_CURRENT_LIST_DIR}/loguruConfig.cmake.in ${SOURCE_PATH}/loguruConfig.cmake.in COPYONLY)
|
|
||||||
|
|
||||||
vcpkg_check_features(
|
vcpkg_check_features(
|
||||||
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||||
FEATURES
|
FEATURES
|
||||||
@ -30,8 +24,10 @@ if(VCPKG_TARGET_IS_LINUX OR VCPKG_TARGET_IS_OSX)
|
|||||||
)
|
)
|
||||||
|
|
||||||
vcpkg_cmake_install()
|
vcpkg_cmake_install()
|
||||||
vcpkg_cmake_config_fixup()
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||||
|
vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/loguru")
|
||||||
vcpkg_copy_pdbs()
|
vcpkg_copy_pdbs()
|
||||||
endif()
|
vcpkg_fixup_pkgconfig()
|
||||||
|
|
||||||
file(INSTALL ${CMAKE_CURRENT_LIST_DIR}/copyright DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
|
||||||
|
vcpkg_install_copyright(FILE_LIST "${CMAKE_CURRENT_LIST_DIR}/copyright")
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "loguru",
|
"name": "loguru",
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
"port-version": 3,
|
"port-version": 4,
|
||||||
"description": "A lightweight and flexible C++ logging library",
|
"description": "A lightweight and flexible C++ logging library",
|
||||||
"homepage": "https://github.com/emilk/loguru",
|
"homepage": "https://github.com/emilk/loguru",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
|
@ -605,9 +605,6 @@ libmysql:x86-windows=skip
|
|||||||
libopensp:arm-neon-android=fail
|
libopensp:arm-neon-android=fail
|
||||||
libopensp:arm64-android=fail
|
libopensp:arm64-android=fail
|
||||||
libopensp:x64-android=fail
|
libopensp:x64-android=fail
|
||||||
libosip2:arm-neon-android=fail
|
|
||||||
libosip2:arm64-android=fail
|
|
||||||
libosip2:x64-android=fail
|
|
||||||
libp7client:x64-android=fail
|
libp7client:x64-android=fail
|
||||||
libpng-apng:arm64-windows = skip
|
libpng-apng:arm64-windows = skip
|
||||||
libpng-apng:arm64-uwp = skip
|
libpng-apng:arm64-uwp = skip
|
||||||
@ -700,9 +697,6 @@ llvm:x64-android=fail
|
|||||||
log4cplus:arm64-uwp=fail
|
log4cplus:arm64-uwp=fail
|
||||||
log4cplus:x64-uwp=fail
|
log4cplus:x64-uwp=fail
|
||||||
log4cpp:x64-linux=fail # dynamic exception specifications
|
log4cpp:x64-linux=fail # dynamic exception specifications
|
||||||
loguru:arm-neon-android=fail
|
|
||||||
loguru:arm64-android=fail
|
|
||||||
loguru:x64-android=fail
|
|
||||||
# 32-bit needs android-24
|
# 32-bit needs android-24
|
||||||
lua:arm-neon-android=fail
|
lua:arm-neon-android=fail
|
||||||
magma:x64-linux=fail
|
magma:x64-linux=fail
|
||||||
|
@ -4854,7 +4854,7 @@
|
|||||||
},
|
},
|
||||||
"libosip2": {
|
"libosip2": {
|
||||||
"baseline": "5.3.1",
|
"baseline": "5.3.1",
|
||||||
"port-version": 0
|
"port-version": 1
|
||||||
},
|
},
|
||||||
"libosmium": {
|
"libosmium": {
|
||||||
"baseline": "2.20.0",
|
"baseline": "2.20.0",
|
||||||
@ -5510,7 +5510,7 @@
|
|||||||
},
|
},
|
||||||
"loguru": {
|
"loguru": {
|
||||||
"baseline": "2.1.0",
|
"baseline": "2.1.0",
|
||||||
"port-version": 3
|
"port-version": 4
|
||||||
},
|
},
|
||||||
"lpeg": {
|
"lpeg": {
|
||||||
"baseline": "1.1.0",
|
"baseline": "1.1.0",
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "21f43364595f76ad0ef3d516ac68f7473fa30c24",
|
||||||
|
"version": "5.3.1",
|
||||||
|
"port-version": 1
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "cb02960c7156b49272969e224ccb0903c0a42a24",
|
"git-tree": "cb02960c7156b49272969e224ccb0903c0a42a24",
|
||||||
"version": "5.3.1",
|
"version": "5.3.1",
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "fb3e7c33bf919ef01ff262f2b3b40ab89270a12b",
|
||||||
|
"version": "2.1.0",
|
||||||
|
"port-version": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "827f85e170a1d4548088fa36cf46817e146184d0",
|
"git-tree": "827f85e170a1d4548088fa36cf46817e146184d0",
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
|
Loading…
Reference in New Issue
Block a user