Skip to content
Snippets Groups Projects
Commit e1238c81 authored by Georgy Moshkin's avatar Georgy Moshkin :speech_balloon: Committed by Yaroslav Dynnikov
Browse files

build: fix tarantool-sys build options

The commit c18fe6e6 is wrong. We've tried to disable building tests,
but:

1. A space in "CMAKE_TARANTOOL_ARGS" was parsed incorrectly.
2. `tarantool-sys/static-build/CMakeFiles.txt` did ignore
   `-DBUILD_TESTING` option.
parent c7322407
No related branches found
No related tags found
1 merge request!437build: switch tarantool-sys from a set of patch files to a branch
Pipeline #14606 passed
...@@ -57,7 +57,7 @@ fn build_tarantool() { ...@@ -57,7 +57,7 @@ fn build_tarantool() {
let dst = cmake::Config::new("tarantool-sys/static-build") let dst = cmake::Config::new("tarantool-sys/static-build")
.define( .define(
"CMAKE_TARANTOOL_ARGS", "CMAKE_TARANTOOL_ARGS",
"-DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_TESTING=FALSE", "-DCMAKE_BUILD_TYPE=RelWithDebInfo;-DBUILD_TESTING=FALSE;-DBUILD_DOC=FALSE",
) )
.build_target("tarantool") .build_target("tarantool")
.out_dir(build_dir) .out_dir(build_dir)
......
tarantool-sys @ 797bf67b
Subproject commit 62bf16f8aee0e1c73c8b5052bed380df32fcfc3b Subproject commit 797bf67b8370b112200ec68410cd85b206aafe0d
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment