Use vcpkg installed wxrc, support mingw triplet.

Use the vcpkg installed wxrc, from a tools subdirectory, instead of
copying it out of the build tree.

Except when running on appveyor, for some reason the vcpkg wxrc does not
work there, so use our own from the dependencies submodule.

Support vcpkg mingw triplets, they don't work yet however.

Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2020-08-14 11:15:01 +00:00
parent 08b5685049
commit b23d463652
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
3 changed files with 16 additions and 18 deletions

View File

@ -184,10 +184,16 @@ function(vcpkg_set_toolchain)
set(CMAKE_GENERATOR_PLATFORM x64 CACHE STRING "visual studio build architecture" FORCE) set(CMAKE_GENERATOR_PLATFORM x64 CACHE STRING "visual studio build architecture" FORCE)
endif() endif()
if(WIN32 AND (NOT CMAKE_GENERATOR MATCHES "Visual Studio")) if(WIN32 AND NOT CMAKE_GENERATOR MATCHES "Visual Studio")
# set toolchain to VS for e.g. Ninja or jom if(VCPKG_TARGET_TRIPLET MATCHES "^x[68][46]-windows-")
set(CMAKE_C_COMPILER cl CACHE STRING "Microsoft C/C++ Compiler" FORCE) # set toolchain to VS for e.g. Ninja or jom
set(CMAKE_CXX_COMPILER cl CACHE STRING "Microsoft C/C++ Compiler" FORCE) set(CMAKE_C_COMPILER cl CACHE STRING "Microsoft C/C++ Compiler" FORCE)
set(CMAKE_CXX_COMPILER cl CACHE STRING "Microsoft C/C++ Compiler" FORCE)
elseif(VCPKG_TARGET_TRIPLET MATCHES "^x[68][46]-mingw-")
# set toolchain to MinGW for e.g. Ninja or jom
set(CMAKE_C_COMPILER gcc CACHE STRING "MinGW GCC C Compiler" FORCE)
set(CMAKE_CXX_COMPILER g++ CACHE STRING "MinGW G++ C++ Compiler" FORCE)
endif()
endif() endif()
set(CMAKE_TOOLCHAIN_FILE ${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake CACHE FILEPATH "vcpkg toolchain" FORCE) set(CMAKE_TOOLCHAIN_FILE ${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake CACHE FILEPATH "vcpkg toolchain" FORCE)

@ -1 +1 @@
Subproject commit 605765f55dccc515a9b3b934a7718321f14e3d56 Subproject commit a39ddbb983b6ca42bd328f4eb3119b1d507f1019

View File

@ -163,21 +163,13 @@ if(WIN32 AND CMAKE_TOOLCHAIN_FILE MATCHES vcpkg AND (X86_32 OR AMD64))
) )
endif() endif()
if(NOT EXISTS ${installed_prefix}/bin/wxrc.exe) if(DEFINED ENV{APPVEYOR})
# Need to copy both the release and debug versions out of the build tree, because # For some reason, the vcpkg built wxrc fails on appveyor.
# appveyor does not cache the build trees. set(WXRC ${CMAKE_SOURCE_DIR}/dependencies/wxrc.exe)
file( else()
COPY ${build_prefix_rel}/lib/wxrc.exe set(WXRC ${common_prefix}/tools/wxwidgets/wxrc.exe)
DESTINATION ${common_prefix}/bin
)
file(
COPY ${build_prefix_dbg}/lib/wxrc.exe
DESTINATION ${dbg_prefix}/bin
)
endif() endif()
set(WXRC ${installed_prefix}/bin/wxrc.exe)
if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/zip.exe) if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/zip.exe)
# get zip binary for wxrc # get zip binary for wxrc
file(DOWNLOAD "https://www.willus.com/archive/zip64/infozip_binaries_win32.zip" ${CMAKE_CURRENT_BINARY_DIR}/infozip_binaries_win32.zip) file(DOWNLOAD "https://www.willus.com/archive/zip64/infozip_binaries_win32.zip" ${CMAKE_CURRENT_BINARY_DIR}/infozip_binaries_win32.zip)