diff options
author | Sam Clegg <sbc@chromium.org> | 2021-04-04 17:34:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-04 17:34:00 -0700 |
commit | 15a5156b05981c16ba181fae0e35c50418f86df0 (patch) | |
tree | 5040871fe923e50fe639f5d1f1d3228985613d20 /Makefile | |
parent | aa0515b3c808da880942db8658abeaa969534667 (diff) | |
download | wabt-15a5156b05981c16ba181fae0e35c50418f86df0.tar.gz wabt-15a5156b05981c16ba181fae0e35c50418f86df0.tar.bz2 wabt-15a5156b05981c16ba181fae0e35c50418f86df0.zip |
Use ninja cmake generator by default (#1146)
I'm tempted to followup by removing the "Unix Makefile" support
completely from the top level Makefile (users who really prefer that can
still run cmake directly of course).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ MAKEFILE_NAME := $(lastword $(MAKEFILE_LIST)) ROOT_DIR := $(dir $(abspath $(MAKEFILE_NAME))) -USE_NINJA ?= 0 +USE_NINJA ?= 1 EMSCRIPTEN_DIR ?= $(dir $(shell which emcc)) CMAKE_CMD ?= cmake |