aboutsummaryrefslogtreecommitdiff
path: root/.ci/build.sh
diff options
context:
space:
mode:
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 @@
+#!/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