diff options
| author | Johnny Willemsen <jwillemsen@remedy.nl> | 2019-04-08 21:35:23 +0200 |
|---|---|---|
| committer | Phil Christensen <philc@microsoft.com> | 2019-04-08 12:35:23 -0700 |
| commit | 757e21881247ab4adabcea470e093f3566fdf58a (patch) | |
| tree | cad4f85072db344c36e03684844f9ec90fa43c2f | |
| parent | b49c739129dfbc6a13e2881494084119fc221a5e (diff) | |
| download | vcpkg-757e21881247ab4adabcea470e093f3566fdf58a.tar.gz vcpkg-757e21881247ab4adabcea470e093f3566fdf58a.zip | |
[ace] Add support for Visual Studio 2019 (#6001)
* ports/ace/CONTROL:
* ports/ace/portfile.cmake:
| -rw-r--r-- | ports/ace/CONTROL | 2 | ||||
| -rw-r--r-- | ports/ace/portfile.cmake | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/ports/ace/CONTROL b/ports/ace/CONTROL index ac298f234..9d4d36cd5 100644 --- a/ports/ace/CONTROL +++ b/ports/ace/CONTROL @@ -1,3 +1,3 @@ Source: ace -Version: 6.5.5 +Version: 6.5.5-1 Description: The ADAPTIVE Communication Environment diff --git a/ports/ace/portfile.cmake b/ports/ace/portfile.cmake index 4f7bd5e82..d33028c9a 100644 --- a/ports/ace/portfile.cmake +++ b/ports/ace/portfile.cmake @@ -36,7 +36,9 @@ endif() if(NOT VCPKG_CMAKE_SYSTEM_NAME) set(LIB_RELEASE_SUFFIX .lib) set(LIB_DEBUG_SUFFIX d.lib) - if(VCPKG_PLATFORM_TOOLSET MATCHES "v141") + if(VCPKG_PLATFORM_TOOLSET MATCHES "v142") + set(SOLUTION_TYPE vs2019) + elseif(VCPKG_PLATFORM_TOOLSET MATCHES "v141") set(SOLUTION_TYPE vs2017) else() set(SOLUTION_TYPE vc14) |
