Skip to content
This repository has been archived by the owner on Sep 13, 2021. It is now read-only.

WIP: triplets #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/vcpkg/triplets/x64-linux.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
set(VCPKG_TARGET_ARCHITECTURE x64)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE static)
set(VCPKG_BUILD_TYPE release)
set(VCPKG_CMAKE_SYSTEM_NAME Linux)
4 changes: 4 additions & 0 deletions src/vcpkg/triplets/x64-windows-static.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
set(VCPKG_TARGET_ARCHITECTURE x64)
set(VCPKG_CRT_LINKAGE static)
set(VCPKG_LIBRARY_LINKAGE static)
set(VCPKG_BUILD_TYPE release)
4 changes: 4 additions & 0 deletions src/vcpkg/triplets/x64-windows.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
set(VCPKG_TARGET_ARCHITECTURE x64)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE dynamic)
set(VCPKG_BUILD_TYPE release)
6 changes: 6 additions & 0 deletions win2016-azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ jobs:
condition: eq( variables['Agent.OS'], 'Windows_NT' )
displayName: Override vcpkg port files

# Copy customized triplet(s) into place
- powershell: |
cp -r -v $(src.vcpkg)/triplets/* C:/vcpkg/triplets
condition: eq( variables['Agent.OS'], 'Windows_NT' )
displayName: Override vcpkg triplet files

# Install Python Interpreter to default location
# We have to do this because pybind11 currently can't find the
# Azure-provided Python:
Expand Down