mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-26 16:24:35 +01:00
19 lines
786 B
YAML
19 lines
786 B
YAML
language: c
|
|
before_install:
|
|
- echo "yes" | sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse"
|
|
- echo "yes" | sudo apt-add-repository ppa:openmw/deps
|
|
- sudo apt-key update -qq
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y --force-yes binutils-mingw-w64-i686 gcc-mingw-w64-i686 g++-mingw-w64-i686 libsdl2-static-dev
|
|
- ls -al /usr/bin
|
|
- cp /usr/bin/i586-mingw32msvc-gcc /usr/bin/i686-mingw32msvc-gcc
|
|
i586-mingw32msvc-c++
|
|
- ls -al /usr/include/SDL2
|
|
script:
|
|
- which crossdev
|
|
- echo "Hello World"
|
|
- mkdir build
|
|
- pushd build; cmake -DCMAKE_TOOLCHAIN_FILE=../CMakeLists_mingw.txt -DCMAKE_BUILD_TYPE=Debug .. ; popd
|
|
#notifications:
|
|
#irc: "irc.freenode.net#openrct2"
|