diff options
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | appveyor.yml | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d8717ff..c4ef536 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,6 +14,10 @@ if(MSVC_VERSION GREATER_EQUAL "1910" AND MSVC_VERSION LESS "1920") add_definitions(/D_SILENCE_CXX17_ALLOCATOR_VOID_DEPRECATION_WARNING) endif() +# AppVeyor builds complain about _WIN32_WINNT not being defined. +# Not sure what's the right thing to do about it, arbitrarily setting it to +# target Windows 7 as described here: +# https://docs.microsoft.com/en-gb/windows/win32/winprog/using-the-windows-headers if(WIN32) add_definitions(/DNTDDI_VERSION=NTDDI_WIN7 /D_WIN32_WINNT=_WIN32_WINNT_WIN7) endif() diff --git a/appveyor.yml b/appveyor.yml index 5834b8c..40e3912 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,6 +19,13 @@ build_script: - ps: .\.appveyor\build.ps1 for: +# Only build Release builds for master to speed things up: +- branches: + except: + - master + configuration: + - Debug + - matrix: only: - image: Visual Studio 2017 |