aboutsummaryrefslogtreecommitdiff
path: root/ports/tbb
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-06-09 19:34:07 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-06-09 19:34:07 -0700
commit9a642ade4e7a605e7d11b693e471990d5c6468ed (patch)
tree9fb4124e1686760cf1901deff9a0f46c792d91d6 /ports/tbb
parent2071719138cac9f2e943b129e5a19bef6f16f930 (diff)
downloadvcpkg-9a642ade4e7a605e7d11b693e471990d5c6468ed.tar.gz
vcpkg-9a642ade4e7a605e7d11b693e471990d5c6468ed.zip
[box2d][directxmesh][directxtex][directxtk][directxtk12][dxut][entityx][octomap][pdcurses][redshell][rttr][tbb][uvatlas] Improve constraint checking
Diffstat (limited to 'ports/tbb')
-rw-r--r--ports/tbb/portfile.cmake7
1 files changed, 5 insertions, 2 deletions
diff --git a/ports/tbb/portfile.cmake b/ports/tbb/portfile.cmake
index 387762bcb..d633a9b23 100644
--- a/ports/tbb/portfile.cmake
+++ b/ports/tbb/portfile.cmake
@@ -2,8 +2,11 @@ if (VCPKG_LIBRARY_LINKAGE STREQUAL static)
message(STATUS "Warning: Static building not supported yet. Building dynamic.")
set(VCPKG_LIBRARY_LINKAGE dynamic)
endif()
-if (VCPKG_CRT_LINKAGE STREQUAL static OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL WindowsStore)
- message(FATAL_ERROR "Build settings not supported")
+if (VCPKG_CRT_LINKAGE STREQUAL static)
+ message(FATAL_ERROR "TBB does not currently support static crt linkage")
+endif()
+if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL WindowsStore)
+ message(FATAL_ERROR "TBB does not currently support UWP")
endif()
include(vcpkg_common_functions)