diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-26 16:45:41 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-26 16:45:41 -0700 |
| commit | b12d182d9739e2fda6037cac4a7ceb8232501779 (patch) | |
| tree | 26a59e0cd5815b9e21a4a08e750a83ec6098d7fc | |
| parent | fd81dc37bbb819bba79e782b7a2cacbabd42728c (diff) | |
| download | vcpkg-b12d182d9739e2fda6037cac4a7ceb8232501779.tar.gz vcpkg-b12d182d9739e2fda6037cac4a7ceb8232501779.zip | |
[libwebsockets] Mark as not static ready
| -rw-r--r-- | ports/libwebsockets/portfile.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/libwebsockets/portfile.cmake b/ports/libwebsockets/portfile.cmake index 5253f6fa8..9622f0e01 100644 --- a/ports/libwebsockets/portfile.cmake +++ b/ports/libwebsockets/portfile.cmake @@ -1,3 +1,7 @@ +include(${CMAKE_TRIPLET_FILE}) +if (VCPKG_LIBRARY_LINKAGE STREQUAL static) + message(FATAL_ERROR "Static building not supported yet") +endif() include(vcpkg_common_functions) set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/libwebsockets-2.0.0) vcpkg_download_distfile(ARCHIVE |
