Update build steps to include header-only libs

master
Konstantinos Sideris 2018-07-08 18:48:19 +03:00
parent a6bff6cde8
commit 89211c97da
1 changed files with 3 additions and 1 deletions

View File

@ -32,7 +32,9 @@ build() {
cmake -Hdeps -B.deps -DUSE_BUNDLED_BOOST=OFF
cmake --build .deps
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release \
-DLMDBXX_INCLUDE_DIR=.deps/usr/include \
-DTWEENY_INCLUDE_DIR=.deps/usr/include
cmake --build build
}