mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 09:08:59 +08:00
Commit a fix to gumbo on Linux so that it does include the string changes by default (#3704)
* Commit a fix to gumbo on linux so that it does include the string change macros by default. * [gumbo] Bump CONTROL file.
This commit is contained in:
parent
80f64c24dc
commit
5c8b828e07
@ -16,8 +16,10 @@ set(gumbo_srcs
|
||||
src/vector.c
|
||||
)
|
||||
|
||||
|
||||
include_directories(visualc/include src)
|
||||
include_directories(src)
|
||||
if (MSVC)
|
||||
include_directories(visualc/include)
|
||||
endif (MSVC)
|
||||
|
||||
add_library(gumbo ${gumbo_srcs})
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
Source: gumbo
|
||||
Version: 0.10.1-1
|
||||
Version: 0.10.1-2
|
||||
Description: An HTML5 parsing library in pure C99
|
||||
|
@ -1,8 +1,9 @@
|
||||
include(vcpkg_common_functions)
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
|
||||
message(WARNING "Dynamic not supported building static")
|
||||
message(WARNING "Dynamic linking not supported -- building static instead")
|
||||
set(VCPKG_LIBRARY_LINKAGE static)
|
||||
endif()
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO google/gumbo-parser
|
||||
|
Loading…
Reference in New Issue
Block a user