diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-26 12:20:46 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-10-26 12:20:46 -0700 |
| commit | 814eaacd2c9830d1f1626eef6a5cb6d6d3d49e8d (patch) | |
| tree | 2b9f91760763ab18eb592dd6823437048fab03db | |
| parent | e9a17729ec0afaf6641569a477c49df6078e7532 (diff) | |
| download | vcpkg-814eaacd2c9830d1f1626eef6a5cb6d6d3d49e8d.tar.gz vcpkg-814eaacd2c9830d1f1626eef6a5cb6d6d3d49e8d.zip | |
[chakracore] Mark regarding static/dynamic building
| -rw-r--r-- | ports/chakracore/portfile.cmake | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ports/chakracore/portfile.cmake b/ports/chakracore/portfile.cmake index 6780b6b55..989c76c60 100644 --- a/ports/chakracore/portfile.cmake +++ b/ports/chakracore/portfile.cmake @@ -1,4 +1,8 @@ -include(vcpkg_common_functions) +include(${CMAKE_TRIPLET_FILE}) +if (VCPKG_LIBRARY_LINKAGE STREQUAL static) + message(FATAL_ERROR "Static building not supported yet") +endif() +include(vcpkg_common_functions) find_program(POWERSHELL powershell) set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/ChakraCore-1.2.0.0) |
