From 7ad157ebe2970be6f63d250af30f00a23dfec948 Mon Sep 17 00:00:00 2001 From: Mikkel Oscar Lyderik Date: Fri, 4 Sep 2015 21:08:44 +0200 Subject: [PATCH] make install wlc as part of the build --- .ci/build.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.ci/build.sh b/.ci/build.sh index e2d2ced98..ece5b2a35 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