summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2022-03-21 12:33:07 -0700
committerGitHub <noreply@github.com>2022-03-21 19:33:07 +0000
commit0fb02974a84bfc3a7062fe6e8471432662ee9d59 (patch)
tree3899f09456ed3476b4ce226eaeaae8b38db905e3 /README.md
parentd2f54b40e736cdee2a0ff9fc15e9323ccb9d7c20 (diff)
downloadbinaryen-0fb02974a84bfc3a7062fe6e8471432662ee9d59.tar.gz
binaryen-0fb02974a84bfc3a7062fe6e8471432662ee9d59.tar.bz2
binaryen-0fb02974a84bfc3a7062fe6e8471432662ee9d59.zip
Add BUILD_TESTS CMake option (#4536)
Turning it off removes the build dependency on the third-party googletest library.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index a0fdeabfc..4390283c7 100644
--- a/README.md
+++ b/README.md
@@ -318,7 +318,9 @@ After that you can build with CMake:
cmake . && make
```
-A C++14 compiler is required. Note that you can also use `ninja` as your generator: `cmake -G Ninja . && ninja`.
+A C++17 compiler is required. Note that you can also use `ninja` as your generator: `cmake -G Ninja . && ninja`.
+
+To avoid the gtest dependency, you can pass `-DBUILD_TESTS=OFF` to cmake.
Binaryen.js can be built using Emscripten, which can be installed via [the SDK](http://kripken.github.io/emscripten-site/docs/getting_started/downloads.html)).