diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-25 19:04:07 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-25 19:04:07 -0700 |
| commit | 1de1cec3729846a7d7e599ba1ac82d4eba441180 (patch) | |
| tree | 88c46eea7f406ed7c3f369f80ef1371e88330b87 | |
| parent | 71bb6b158a094a085d777d62722b2d0c1f8440be (diff) | |
| download | vcpkg-1de1cec3729846a7d7e599ba1ac82d4eba441180.tar.gz vcpkg-1de1cec3729846a7d7e599ba1ac82d4eba441180.zip | |
[ace] Add check for static building
| -rw-r--r-- | ports/ace/portfile.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ports/ace/portfile.cmake b/ports/ace/portfile.cmake index 40becf8aa..4838afc42 100644 --- a/ports/ace/portfile.cmake +++ b/ports/ace/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/ACE_wrappers/ace) vcpkg_download_distfile(ARCHIVE |
