diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-26 19:28:59 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-26 19:28:59 -0700 |
| commit | 8c5c5c16f46fbf487218fa759171fc86d5a16e0c (patch) | |
| tree | fadc806a0cec27e659b0c9505f3dc86d87b90a0e | |
| parent | d264387327f6d273f9493240eb31c3bf8e9abdd4 (diff) | |
| download | vcpkg-8c5c5c16f46fbf487218fa759171fc86d5a16e0c.tar.gz vcpkg-8c5c5c16f46fbf487218fa759171fc86d5a16e0c.zip | |
[physfs] Mark as not static ready
| -rw-r--r-- | ports/physfs/portfile.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ports/physfs/portfile.cmake b/ports/physfs/portfile.cmake index 463d1b8a7..80ed17d0f 100644 --- a/ports/physfs/portfile.cmake +++ b/ports/physfs/portfile.cmake @@ -7,6 +7,9 @@ # 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/physfs-2.0.3) vcpkg_download_distfile(ARCHIVE |
