diff options
author | Patrick 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) |
commit | 5d4aeeb56fc143cf161db278e285c103a0dbc900 (patch) | |
tree | a16fccb4cf366c48c3080d57b5f147708dbeddd6 | |
parent | 5ef50ecc733be2c3f631f92fa9a82786a9f5deb1 (diff) |
build: Set BUILD_TESTS to OFF
-rwxr-xr-x | build | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 $@ |