diff options
| author | driver1998 <driver1998.ms@outlook.com> | 2019-04-18 16:33:06 +0800 |
|---|---|---|
| committer | Griffin Downs <35574547+grdowns@users.noreply.github.com> | 2019-04-18 01:33:06 -0700 |
| commit | 5285f8dc4a11e9ae0ee1a7fe674eaf39a2876cd1 (patch) | |
| tree | 9babf042b2b8ead86cd95696159cf574716925b8 /ports/gettext/CMakeLists.txt | |
| parent | 2112801abafbc0778f441bec6bce237c7eced31c (diff) | |
| download | vcpkg-5285f8dc4a11e9ae0ee1a7fe674eaf39a2876cd1.tar.gz vcpkg-5285f8dc4a11e9ae0ee1a7fe674eaf39a2876cd1.zip | |
[gettext] arm/arm64 windows support (#6118)
* gettext port update for windows-arm64
* bump gettext version to 0.19-9
Diffstat (limited to 'ports/gettext/CMakeLists.txt')
| -rw-r--r-- | ports/gettext/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ports/gettext/CMakeLists.txt b/ports/gettext/CMakeLists.txt index cfd460e20..1ec9aa285 100644 --- a/ports/gettext/CMakeLists.txt +++ b/ports/gettext/CMakeLists.txt @@ -119,6 +119,9 @@ endif() if(NOT WIN32)
target_link_libraries(libintl PRIVATE Threads::Threads)
endif()
+if (WIN32)
+ target_link_libraries(libintl PRIVATE Advapi32.lib)
+endif()
install(TARGETS libintl
EXPORT unofficial-gettext-targets
|
