aboutsummaryrefslogtreecommitdiff
path: root/.ci/build.sh
diff options
context:
space:
mode:
authorMikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-09-04 21:08:44 +0200
committerMikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-09-04 21:08:44 +0200
commit7ad157ebe2970be6f63d250af30f00a23dfec948 (patch)
treebf6e697d911cbafb7612d5c3fc198dd3e4aa26b4 /.ci/build.sh
parentcf1176c7286657e4c56cbd5bc599ba85482317b9 (diff)
make install wlc as part of the build
Diffstat (limited to '.ci/build.sh')
-rwxr-xr-x.ci/build.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/.ci/build.sh b/.ci/build.sh
index e2d2ced9..ece5b2a3 100755
--- a/.ci/build.sh
+++ b/.ci/build.sh
@@ -7,11 +7,10 @@ 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
+sudo make install # - install
cd ../..
# build sway
-cmake \
- -DWLC_LIBRARIES=wlc/target/src/libwlc.so \
- -DWLC_INCLUDE_DIRS=wlc/include .
+cmake .
make