early-access version 2853
This commit is contained in:
54
externals/vcpkg/ports/cmark/add-feature-tools.patch
vendored
Executable file
54
externals/vcpkg/ports/cmark/add-feature-tools.patch
vendored
Executable file
@@ -0,0 +1,54 @@
|
||||
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
|
||||
index 3a78d0b..7065c89 100644
|
||||
--- a/src/CMakeLists.txt
|
||||
+++ b/src/CMakeLists.txt
|
||||
@@ -52,6 +52,7 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cmark_version.h.in
|
||||
include(GNUInstallDirs)
|
||||
include (GenerateExportHeader)
|
||||
|
||||
+if (BUILD_TOOLS)
|
||||
add_executable(${PROGRAM} ${PROGRAM_SOURCES})
|
||||
cmark_add_compile_options(${PROGRAM})
|
||||
set_target_properties(${PROGRAM} PROPERTIES
|
||||
@@ -65,6 +66,7 @@ if (CMARK_STATIC)
|
||||
elseif (CMARK_SHARED)
|
||||
target_link_libraries(${PROGRAM} ${LIBRARY})
|
||||
endif()
|
||||
+endif()
|
||||
|
||||
# -fvisibility=hidden
|
||||
set(CMAKE_C_VISIBILITY_PRESET hidden)
|
||||
@@ -114,23 +116,30 @@ if (CMARK_STATIC)
|
||||
list(APPEND CMARK_INSTALL ${STATICLIBRARY})
|
||||
endif()
|
||||
|
||||
-if (MSVC)
|
||||
+if (MSVC AND BUILD_TOOLS)
|
||||
set_property(TARGET ${PROGRAM}
|
||||
APPEND PROPERTY LINK_FLAGS /INCREMENTAL:NO)
|
||||
-endif(MSVC)
|
||||
+endif(MSVC AND BUILD_TOOLS)
|
||||
|
||||
if(NOT MSVC OR CMAKE_HOST_SYSTEM_NAME STREQUAL Windows)
|
||||
set(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS ON)
|
||||
include(InstallRequiredSystemLibraries)
|
||||
endif()
|
||||
|
||||
-install(TARGETS ${PROGRAM} ${CMARK_INSTALL}
|
||||
+install(TARGETS ${CMARK_INSTALL}
|
||||
EXPORT cmark-targets
|
||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
)
|
||||
|
||||
+if (BUILD_TOOLS)
|
||||
+ install(TARGETS ${PROGRAM}
|
||||
+ EXPORT cmark-targets
|
||||
+ RUNTIME DESTINATION tools/cmark
|
||||
+ )
|
||||
+endif()
|
||||
+
|
||||
if(CMARK_SHARED OR CMARK_STATIC)
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libcmark.pc.in
|
||||
${CMAKE_CURRENT_BINARY_DIR}/libcmark.pc @ONLY)
|
||||
48
externals/vcpkg/ports/cmark/portfile.cmake
vendored
Executable file
48
externals/vcpkg/ports/cmark/portfile.cmake
vendored
Executable file
@@ -0,0 +1,48 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO commonmark/cmark
|
||||
REF 977b128291c0cf6c5053cdcf2ac72e627f09c105 #0.30.1
|
||||
SHA512 ff8139fbb45549d6bea70e11c35ae1d8cf6108d0141688cc2b878afa6247147e0c15ac885e6ed8fa2263534dc79e88e398b30d3d3ae800f13dcdd878114adac8
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
add-feature-tools.patch
|
||||
)
|
||||
|
||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" CMARK_STATIC)
|
||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" CMARK_SHARED)
|
||||
|
||||
if ("tools" IN_LIST FEATURES AND VCPKG_TARGET_IS_UWP)
|
||||
message(FATAL_ERROR "${PORT} does no support to build tools on UWP")
|
||||
endif()
|
||||
|
||||
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
FEATURES
|
||||
tools BUILD_TOOLS
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
OPTIONS
|
||||
${FEATURE_OPTIONS}
|
||||
-DCMARK_TESTS=OFF
|
||||
-DCMARK_SHARED=${CMARK_SHARED}
|
||||
-DCMARK_STATIC=${CMARK_STATIC}
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
|
||||
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/cmark)
|
||||
|
||||
vcpkg_fixup_pkgconfig()
|
||||
|
||||
if ("tools" IN_LIST FEATURES)
|
||||
vcpkg_copy_tools(TOOL_NAMES cmark SEARCH_DIR "${CURRENT_PACKAGES_DIR}/tools/cmark" AUTO_CLEAN)
|
||||
endif()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
|
||||
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
||||
endif()
|
||||
|
||||
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
||||
21
externals/vcpkg/ports/cmark/vcpkg.json
vendored
Executable file
21
externals/vcpkg/ports/cmark/vcpkg.json
vendored
Executable file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "cmark",
|
||||
"version-semver": "0.30.1",
|
||||
"description": "CommonMark parsing and rendering library",
|
||||
"homepage": "https://github.com/commonmark/cmark",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
],
|
||||
"features": {
|
||||
"tools": {
|
||||
"description": "Build tools"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user