[imgui] Update to 1.68 (#5426)

* [imgui] Update to 1.68

* [imgui] Add an advice from the author of imgui
This commit is contained in:
myd7349 2019-02-26 05:41:53 +08:00 committed by Robert Schumacher
parent 22026ce2d9
commit 7befb86005
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,3 @@
Source: imgui Source: imgui
Version: 1.67-1 Version: 1.68
Description: Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies. Description: Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies.

View File

@ -1,10 +1,18 @@
include(vcpkg_common_functions) include(vcpkg_common_functions)
if (TARGET_TRIPLET MATCHES "^x(86|64)-windows$" AND VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
message(WARNING "\
The author of imgui strongly advises users of this lib against using a DLL. \
For more details, please visit: \
https://github.com/Microsoft/vcpkg/issues/5110"
)
endif ()
vcpkg_from_github( vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH OUT_SOURCE_PATH SOURCE_PATH
REPO ocornut/imgui REPO ocornut/imgui
REF v1.67 REF v1.68
SHA512 14cca66a55597517d6e1cafa59897b8e8f482db0a31a73d87a3ca634a12afe9ece2f423c17ece802e23bb2c09322502b2b2c4318054fad03bd1c537031fd6f71 SHA512 4a7996f188816eb1caa3130546fbfbe2069a8a338daf0540ae09e7c7d6a40082e25144e91c94f53d7ff6023925c92ce591e4d59614e08b1ca7b91097519bf4a4
HEAD_REF master HEAD_REF master
) )