summaryrefslogtreecommitdiffstats
path: root/build/appveyor
AgeCommit message (Collapse)Author
2020-04-18Removing that whitespace so that the precommit passesJosepMaJAZ
2020-04-13FindOupus.cmake restored. Somehow now it does find it cleaning the cache...JosepMaJAZ
Also fixed some formatting errors.
2020-04-13This fixes some bugs building in debug:JosepMaJAZ
- do not use link time code generation since that slows down the build. - fixes if built with dynamically linked libraries. Note: Currently it needs manual copying of such dlls into the compiled directory (including the qt plugins). - Fixed detection of opus. I don't know why it didn't work as it was. Version included in CMake tools for visual studio is 3.16.19112601-MSVC_2 - Fixed a database driver initialization error. This should only happen if SQLITE_OMIT_AUTOINIT was set. I didn't saw where this could happen, so I simply call sqlite3_initialize() explicitly in dbconnection. It is a no-op operation if it is already initialized.
2020-01-14Fixes from PRJosepMaJAZ
2019-12-22Fix: Do not close the window at end.JosepMaJAZ
2019-12-21Changes to make appveyor script usable for developers.JosepMaJAZ
- Autodetect Visual Studio version, edition or buildtools. Default to predefined buildtools as before, prefer 2017 to 2019 and Enterprise to Professional to Community. Explicit parameter to make VC 2019 to use VC 2017 (14.1) compiler. - Autodetect path of 64bit binaries so no hardcoded path anymore. - Two new parameters to skip build and run tests and skip installer generation. - Install_buildenv first checks if path exists before checking if platform has 7zip. - Added alternative using powershell if 7zip not found. This is all complemented with a simple build.cmd that calls these two scripts which will be placed on the wiki.
2018-12-25update AppVeyor to use Qt 5.12 on WindowsBe
2018-10-11Fix path to VS2017 Build Tools.RJ Ryan
2018-10-09Update build_mixxx.bat to use MSVC2017.RJ Skerry-Ryan
2018-09-06Use Qt 5.11.1 in AppVeyor builds.RJ Skerry-Ryan
2018-05-20Disable debug symbols in release builds if PDB bundling is disabled.RJ Skerry-Ryan
Disable PDB bundling for AppVeyor builds since it causes us to run out of RAM.
2018-05-20Enable Qt5 build on Windows.RJ Skerry-Ryan
2018-05-20Force qt4 in the AppVeyor build.RJ Skerry-Ryan
2018-04-06Typo fixes luzpaz
+ User facing typos + trivial source comment typos + superflous double whitespace issues + found redundant comment typo Found using `codespell -q 3 --skip="./build/wix/Localization,./res/translations,./lib" -I ../mixxx-whitelist.txt` where the contents of the whitelist were: ``` iff freee substract ```
2018-01-01also remove nsis patchSebastien Blaisot
2017-12-22remove printing config.log when build fail in appveyor build scriptSebastien Blaisot
2017-09-16(appveyor) fix NSIS patch after appveyor NSIS upgradeSebastien Blaisot
2017-01-25AppVeyor: Read Windows environment from a file in the repository.RJ Ryan
2017-01-23Update AppVeyor build to ↵RJ Ryan
"2.1-j00018-%platform%-%configuration%-fastbuild-static-7510b10-minimal". Also move install_buildenv.bat to build/windows and make it usable by Jenkins.
2017-01-18Build Mixxx on Appveyor with Visual Studio 2015.RJ Ryan
Uses an x86 and x64 environment built from https://github.com/mixxxdj/buildserver/commit/3ddf42e4e06badf569b319981cae4a53559275a0 which is a combination of work by @Pegasus-RPG, @JosepMaJAZ, @sblaisot and myself. All dependencies are linked statically. SCons is now present in the bin directory of the environment, so we don't need to install it anymore.
2017-01-18update appveyor NSIS patchSebastien Blaisot
2017-01-18Add NSIS patching to appveyor install sectionSebastien Blaisot
2016-11-23Move appveyor build scripts to build/appveyorSebastien Blaisot