-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Appveyor: Cleanup settings, add Qt 5.5/Mingw build
- Cleanup old settings in Appveyor that are no longer used since the Nuget packages were removed. - Bump Qt version to 5.5. - Add MinGW builds.
- Loading branch information
Showing
3 changed files
with
24 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
rem CMake/MinGW workaround - remove sh.exe from PATH | ||
where sh | ||
set PATH=%PATH:C:\Program Files\Git\usr\bin;=% | ||
set CMAKE_PREFIX_PATH=%QTDIR% | ||
set PATH=%MINGW%\bin;%PATH%;%QTDIR%\bin | ||
mkdir build | ||
cd build | ||
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=%configuration% -DCMAKE_INSTALL_PREFIX=../INSTALL .. | ||
cmake --build . --target windeployqt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
set CMAKE_PREFIX_PATH=%QTDIR% | ||
set PATH=%PATH%;%QTDIR%\bin | ||
mkdir build | ||
cd build | ||
rem FYI CMAKE_BUILD_TYPE does not work with VS generators, use --config | ||
cmake -G "Visual Studio 12" -DCMAKE_BUILD_TYPE=%configuration% -DCMAKE_INSTALL_PREFIX=../INSTALL .. | ||
cmake --build . --config %configuration% --target windeployqt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters