aboutsummaryrefslogtreecommitdiffstats
path: root/.ci/build.sh
diff options
context:
space:
mode:
authorLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-09-04 19:38:19 +0200
committerLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-09-04 19:38:19 +0200
commitcf1176c7286657e4c56cbd5bc599ba85482317b9 (patch)
tree4e989fd5b54324f5a9801ec00560f0fe3267e8b2 /.ci/build.sh
parentAdd .travis.yml (diff)
downloadsway-cf1176c7286657e4c56cbd5bc599ba85482317b9.tar.gz
sway-cf1176c7286657e4c56cbd5bc599ba85482317b9.tar.zst
sway-cf1176c7286657e4c56cbd5bc599ba85482317b9.zip
Build wlc as part of build step
Diffstat (limited to '.ci/build.sh')
-rwxr-xr-x.ci/build.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/.ci/build.sh b/.ci/build.sh
new file mode 100755
index 00000000..e2d2ced9
--- /dev/null
+++ b/.ci/build.sh
@@ -0,0 +1,17 @@
1#!/bin/bash
2
3# clone and build wlc
4git clone https://github.com/Cloudef/wlc.git
5cd wlc
6git submodule update --init --recursive # - initialize and fetch submodules
7mkdir target && cd target # - create build target directory
8cmake -DCMAKE_BUILD_TYPE=Upstream .. # - run CMake
9make # - compile
10
11cd ../..
12
13# build sway
14cmake \
15 -DWLC_LIBRARIES=wlc/target/src/libwlc.so \
16 -DWLC_INCLUDE_DIRS=wlc/include .
17make