diff options
author | Boris Nagaev <bnagaev@gmail.com> | 2016-10-18 23:29:33 (GMT) |
---|---|---|
committer | Boris Nagaev <bnagaev@gmail.com> | 2017-01-08 02:01:54 (GMT) |
commit | e2fd9fe23a4a883586dbe4596352784a16cb1c5d (patch) | |
tree | a1ecd72bf6b042b281d65a1a61c6ec3125e2feca /src/vtk.mk | |
parent | 0555e10e6f85e6066b6b210a23843967c8d4b394 (diff) | |
download | mxe-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/vtk.mk')
-rw-r--r-- | src/vtk.mk | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -35,9 +35,8 @@ define $(PKG)_BUILD # now for the cross compilation mkdir '$(1)/cross_build' - cd '$(1)/cross_build' && cmake \ + cd '$(1)/cross_build' && '$(TARGET)-cmake' \ -C '$(1)/TryRunResults.cmake'\ - -DCMAKE_TOOLCHAIN_FILE='$(CMAKE_TOOLCHAIN_FILE)'\ -DBUILD_TESTING=FALSE\ -DVTKCompileTools_DIR='$(1)/native_build'\ -DVTK_USE_SYSTEM_EXPAT=TRUE\ |