diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-11-08 14:38:47 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-11-08 14:38:47 -0800 |
| commit | cadee66ca2d8048d7d6449ed0472d091350a617f (patch) | |
| tree | adce12b2b66a4efd6bc89fb8d464962df2327b0c /ports/ace | |
| parent | 1808d461b0e8793445b87eb8ceed71d5ac7aca6e (diff) | |
| download | vcpkg-cadee66ca2d8048d7d6449ed0472d091350a617f.tar.gz vcpkg-cadee66ca2d8048d7d6449ed0472d091350a617f.zip | |
If portfile is not static-enabled yet, warn and then build dynamic
The opposite if portfile is not dynamic enabled
Diffstat (limited to 'ports/ace')
| -rw-r--r-- | ports/ace/portfile.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ports/ace/portfile.cmake b/ports/ace/portfile.cmake index 4642f9944..8301fb232 100644 --- a/ports/ace/portfile.cmake +++ b/ports/ace/portfile.cmake @@ -1,5 +1,6 @@ if (VCPKG_LIBRARY_LINKAGE STREQUAL static) - message(FATAL_ERROR "Static building not supported yet") + message(STATUS "Warning: Static building not supported yet. Building dynamic.") + set(VCPKG_LIBRARY_LINKAGE dynamic) endif() include(vcpkg_common_functions) set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/ACE_wrappers/ace) |
