summaryrefslogtreecommitdiffstats
path: root/src/json_spirit.mk
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2016-10-18 23:29:33 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2017-01-08 02:01:54 (GMT)
commite2fd9fe23a4a883586dbe4596352784a16cb1c5d (patch)
treea1ecd72bf6b042b281d65a1a61c6ec3125e2feca /src/json_spirit.mk
parent0555e10e6f85e6066b6b210a23843967c8d4b394 (diff)
downloadmxe-e2fd9fe23a4a883586dbe4596352784a16cb1c5d.zip
mxe-e2fd9fe23a4a883586dbe4596352784a16cb1c5d.tar.gz
mxe-e2fd9fe23a4a883586dbe4596352784a16cb1c5d.tar.bz2
use cmake wrapper in all packages
Native binaries (libmysqlclient, vtk, vtk6) still build with `cmake` instead of the cmake wrapper. Note that even in these cases MXE's cmake is used (not system cmake), because $(PREFIX)/$(BUILD)/bin is added to PATH by Makefile and MXE's cmake binary exists there.
Diffstat (limited to 'src/json_spirit.mk')
-rw-r--r--src/json_spirit.mk4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/json_spirit.mk b/src/json_spirit.mk
index 923701e..2eb57a1 100644
--- a/src/json_spirit.mk
+++ b/src/json_spirit.mk
@@ -29,9 +29,7 @@ endef
define $(PKG)_BUILD
mkdir '$(1).build'
cd '$(1).build' && \
- cmake '$(1)' \
- -DCMAKE_TOOLCHAIN_FILE='$(CMAKE_TOOLCHAIN_FILE)' \
- -DCMAKE_BUILD_TYPE=Release \
+ '$(TARGET)-cmake' '$(1)' \
-DCMAKE_RELEASE_POSTFIX='' \
-DBoost_THREADAPI=win32
$(MAKE) -C '$(1).build' -j '$(JOBS)' VERBOSE=1 || $(MAKE) -C '$(1)' -j 1 VERBOSE=1