Build wlc as part of build step

This commit is contained in:
Mikkel Oscar Lyderik 2015-09-04 19:38:19 +02:00
parent 6ae6875bba
commit cf1176c728
2 changed files with 26 additions and 4 deletions

17
.ci/build.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
# clone and build wlc
git clone https://github.com/Cloudef/wlc.git
cd wlc
git submodule update --init --recursive # - initialize and fetch submodules
mkdir target && cd target # - create build target directory
cmake -DCMAKE_BUILD_TYPE=Upstream .. # - run CMake
make # - compile
cd ../..
# build sway
cmake \
-DWLC_LIBRARIES=wlc/target/src/libwlc.so \
-DWLC_INCLUDE_DIRS=wlc/include .
make

View File

@ -7,11 +7,16 @@ arch:
- asciidoc
- pcre
- json-c
# aur
- wlc-git
- pixman
- wayland
- libxkbcommon
- libinput
- libx11
- libxcb
- libgl
- mesa
script:
- "cmake ."
- "make"
- "bash .ci/build.sh"
script:
- "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"