summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-04-04 02:45:01 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-04-04 02:45:01 (EDT)
commit5d4aeeb56fc143cf161db278e285c103a0dbc900 (patch)
treea16fccb4cf366c48c3080d57b5f147708dbeddd6
parent5ef50ecc733be2c3f631f92fa9a82786a9f5deb1 (diff)
build: Set BUILD_TESTS to OFF
-rwxr-xr-xbuild8
1 files changed, 6 insertions, 2 deletions
diff --git a/build b/build
index fdb2f9c..cf74f48 100755
--- a/build
+++ b/build
@@ -8,8 +8,12 @@ version = $$(printf '%s\n' '$(OPK_SOURCE_VERSION_UPSTREAM)' | \
nop:
build:
- (cd src && cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr \
- -D STATIC_UBOX:BOOL=ON -D VERSION:STRING="$(version)" .)
+ (cd src && cmake \
+ -D CMAKE_INSTALL_PREFIX:PATH=/usr \
+ -D STATIC_UBOX:BOOL=ON \
+ -D BUILD_TESTS:BOOL=OFF \
+ -D VERSION:STRING="$(version)" \
+ .)
oh-autobuild
touch $@