summaryrefslogtreecommitdiffstats
path: root/src/cmake/test
Commit message (Collapse)AuthorAgeFilesLines
* Copyright headers: point to LICENSE.md and shortenBoris Nagaev2016-08-271-2/+1
| | | | | | | | | | | | | | | | | | | The following script was applied: sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE') sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \ $(git grep -l 'part of MXE.*See index.html') before='This file is part of MXE. See index.html for further information.' after='This file is part of MXE. See LICENSE.md for licensing information.' sed "s/$before/$after/" -i $(git grep -l 'part of MXE') Then git grep 'index.html for further information' revealed two other files. One of them was patched manually (patch.mk). Makefile has text "See index.html for further information" unrelated to licensing. See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
* test/CMakeLists.txt: use default C and CXX languagesTony Theodore2015-12-011-2/+2
|
* cmake test: use policy CMP0020 only if availableBoris Nagaev2015-10-161-1/+3
| | | | | | | | | Policy CMP0020 was introduced in cmake 2.8.11. Debian CMake version 2.8.9 is sufficient for building Qt. See https://github.com/LuaAndC/mxe/commit/6133f6ec74aee1b5fa531782e585710 close #909
* cmake test: decrease min version 2.8.11 -> 2.8.9Boris Nagaev2015-10-161-3/+2
| | | | | | | Debian Wheezy has CMake version 2.8.9 and it is sufficient for building Qt (version 2.8.11 was chosen as it is recommended by Qt docs). see #909
* test/CMakeLists.txt: fix LANGUAGES keyword for 2.8 seriesTony Theodore2015-10-061-1/+1
|
* boost pthreads sdl: tidy up cmake testsTony Theodore2015-10-041-0/+18
closes #887