-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add VCPKG triplet files. All the triplet files are automatically generated by gen.py. Put the files there to ease use.
- Loading branch information
Showing
86 changed files
with
1,780 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE arm64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "-fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "-fsanitize=address") | ||
set(VCPKG_CMAKE_SYSTEM_NAME Linux) | ||
set(CMAKE_POSITION_INDEPENDENT_CODE ON) | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error -DBENCHMARK_ENABLE_WERROR=OFF) | ||
set(VCPKG_LINKER_FLAGS "-fsanitize=address") | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE arm64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "-fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "-fsanitize=address") | ||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_OSX_ARCHITECTURES "arm64") | ||
set(CMAKE_POSITION_INDEPENDENT_CODE ON) | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error -DBENCHMARK_ENABLE_WERROR=OFF) | ||
set(VCPKG_LINKER_FLAGS "-fsanitize=address") | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE arm64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address /Zc:__cplusplus") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error) | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE arm64) | ||
set(VCPKG_CRT_LINKAGE static) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address /Zc:__cplusplus") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error) | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE arm64ec) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address /Zc:__cplusplus") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error) | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE arm64ec) | ||
set(VCPKG_CRT_LINKAGE static) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address /Zc:__cplusplus") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error) | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "-fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "-fsanitize=address") | ||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_OSX_ARCHITECTURES "x86_64;arm64") | ||
set(CMAKE_POSITION_INDEPENDENT_CODE ON) | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error -DBENCHMARK_ENABLE_WERROR=OFF) | ||
set(VCPKG_LINKER_FLAGS "-fsanitize=address") | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "-fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "-fsanitize=address") | ||
set(VCPKG_CMAKE_SYSTEM_NAME Linux) | ||
set(CMAKE_POSITION_INDEPENDENT_CODE ON) | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error -DBENCHMARK_ENABLE_WERROR=OFF) | ||
set(VCPKG_LINKER_FLAGS "-fsanitize=address") | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "-fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "-fsanitize=address") | ||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_OSX_ARCHITECTURES "x86_64") | ||
set(CMAKE_POSITION_INDEPENDENT_CODE ON) | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error -DBENCHMARK_ENABLE_WERROR=OFF) | ||
set(VCPKG_LINKER_FLAGS "-fsanitize=address") | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address /Zc:__cplusplus") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error) | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE static) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address /Zc:__cplusplus") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error) | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE x86) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address /Zc:__cplusplus") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error) | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
set(VCPKG_TARGET_ARCHITECTURE x86) | ||
set(VCPKG_CRT_LINKAGE static) | ||
set(VCPKG_LIBRARY_LINKAGE static) | ||
set(VCPKG_C_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address") | ||
set(VCPKG_CXX_FLAGS "/MP /DWIN32 /D_WINDOWS /DWINAPI_FAMILY=100 /DWINVER=0x0A00 /D_WIN32_WINNT=0x0A00 /DNTDDI_VERSION=0x0A000000 /fsanitize=address /Zc:__cplusplus") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS --compile-no-warning-as-error) | ||
if(PORT MATCHES "onnx") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DONNX_DISABLE_STATIC_REGISTRATION=ON" | ||
) | ||
endif() | ||
if(PORT MATCHES "benchmark") | ||
list(APPEND VCPKG_CMAKE_CONFIGURE_OPTIONS | ||
"-DBENCHMARK_ENABLE_WERROR=OFF" | ||
) | ||
endif() |
Oops, something went wrong.