diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-26 14:24:40 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-26 14:24:40 -0700 |
| commit | 5a8aaa6dfc544cc1a8c4b6ca30eab4def6389bb1 (patch) | |
| tree | 71d5a928f64952116b6b6d7190dca2ef04dc77b9 | |
| parent | e58373ee261ca24da70aff17cc584016540d2015 (diff) | |
| download | vcpkg-5a8aaa6dfc544cc1a8c4b6ca30eab4def6389bb1.tar.gz vcpkg-5a8aaa6dfc544cc1a8c4b6ca30eab4def6389bb1.zip | |
[glew] Mark as not supporting static building
| -rw-r--r-- | ports/glew/portfile.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/glew/portfile.cmake b/ports/glew/portfile.cmake index 5d4ce387f..f048e8c41 100644 --- a/ports/glew/portfile.cmake +++ b/ports/glew/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/glew-2.0.0) vcpkg_download_distfile(ARCHIVE_FILE |
