aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-29 02:33:07 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-29 02:33:07 -0800
commitc6fe22929cc5c152677efede93b9f42778afa7b6 (patch)
tree930ade7aae85b07f91b2df281f338b30f65a1c4c
parent4d29b5a563a808fc36aa3c56309d27fbb73e7bf8 (diff)
downloadvcpkg-c6fe22929cc5c152677efede93b9f42778afa7b6.tar.gz
vcpkg-c6fe22929cc5c152677efede93b9f42778afa7b6.zip
[anax] BUILD_SHARED_LIBS is automatically set by vcpkg
-rw-r--r--ports/anax/portfile.cmake8
1 files changed, 0 insertions, 8 deletions
diff --git a/ports/anax/portfile.cmake b/ports/anax/portfile.cmake
index 845643992..ae22332cf 100644
--- a/ports/anax/portfile.cmake
+++ b/ports/anax/portfile.cmake
@@ -20,16 +20,8 @@ vcpkg_download_distfile(ARCHIVE
)
vcpkg_extract_source_archive(${ARCHIVE})
-if (VCPKG_CRT_LINKAGE STREQUAL dynamic)
- SET(SHARED_FLAG ON)
-else()
- SET(SHARED_FLAG OFF)
-endif()
-
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
- OPTIONS
- -DBUILD_SHARED_LIBS=${SHARED_FLAG}
)
vcpkg_install_cmake()