diff options
| author | Long Nguyen <nguyen.long.908132@gmail.com> | 2020-07-07 04:20:06 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-06 14:20:06 -0700 |
| commit | 89dec24cc258f78953004a3a70acf74019649736 (patch) | |
| tree | 672a1113aa535c5a8c42778de6e4375c7f09a257 /.gitignore | |
| parent | 8b710dea8dd52251debbca1da8f441d0f1c68c53 (diff) | |
| download | vcpkg-89dec24cc258f78953004a3a70acf74019649736.tar.gz vcpkg-89dec24cc258f78953004a3a70acf74019649736.zip | |
[vcpkg] Add mingw dynamic libs triplet (#12101)
* Update .gitignore
* Add mingw dynamic lib triplets
* Only copy pdbs if not using *-mingw triplets
* Using VCPKG_POLICY_DLLS_WITHOUT_LIBS as a workaround
* Rename *-mingw to *-mingw-dynamic
Co-authored-by: Billy Robert O'Neal <bion@microsoft.com>
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore index 273c2e415..c3973b097 100644 --- a/.gitignore +++ b/.gitignore @@ -295,14 +295,18 @@ __pycache__/ /toolsrc/msbuild.x64.release/ /triplets/* #add vcpkg-designed triplets back in -!triplets/community/arm64-mingw.cmake +!triplets/community/arm64-mingw-dynamic.cmake +!triplets/community/arm64-mingw-static.cmake !triplets/community/arm64-uwp.cmake !triplets/community/arm64-windows-static.cmake -!triplets/community/arm-mingw.cmake +!triplets/community/arm-mingw-dynamic.cmake +!triplets/community/arm-mingw-static.cmake !triplets/community/arm-windows.cmake -!triplets/community/x64-mingw.cmake +!triplets/community/x64-mingw-dynamic.cmake +!triplets/community/x64-mingw-static.cmake !triplets/community/x64-windows-static-md.cmake -!triplets/community/x86-mingw.cmake +!triplets/community/x86-mingw-dynamic.cmake +!triplets/community/x86-mingw-static.cmake !triplets/community/x86-uwp.cmake !triplets/community/x86-windows-static.cmake !triplets/community/x86-windows-static-md.cmake |
