Skip to content

Commit

Permalink
AppVeyor: Try different environment variables
Browse files Browse the repository at this point in the history
It seems CMAKE_<LANG>_COMPILER only works as -D options.
  • Loading branch information
bjorn committed Jan 10, 2025
1 parent 4385fe2 commit 961dec4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ environment:
PUSH_RELEASE: true
ENABLE_ZSTD: true
TILED_ITCH_CHANNEL: windows-64bit
CMAKE_C_COMPILER: x86_64-w64-mingw32-gcc.exe
CMAKE_CXX_COMPILER: x86_64-w64-mingw32-g++.exe
CC: x86_64-w64-mingw32-gcc.exe
CXX: x86_64-w64-mingw32-g++.exe
- QTDIR: C:\Qt\5.15\mingw81_32
PYTHONHOME: C:\Python38
MINGW: C:\Qt\Tools\mingw810_32
DEFAULT_PROFILE: i686-w64-mingw32-gcc-8_1_0
PUSH_RELEASE: true
ENABLE_ZSTD: true
TILED_ITCH_CHANNEL: windows-32bit
CMAKE_C_COMPILER: i686-w64-mingw32-gcc.exe
CMAKE_CXX_COMPILER: i686-w64-mingw32-g++.exe
CC: i686-w64-mingw32-gcc.exe
CXX: i686-w64-mingw32-g++.exe

configuration: Release

Expand Down

0 comments on commit 961dec4

Please sign in to comment.