diff options
author | Tony Theodore <tonyt@logyst.com> | 2011-11-22 11:18:31 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2011-11-22 11:18:31 (GMT) |
commit | 793d2a88f9a9833c1d15dfac8a1fcbf22b851d9f (patch) | |
tree | d46f3764eb55790a6790cf8f0475b7522cd735f5 /src/vtk.mk | |
parent | dda43d464627fea312a72ed8c8b656708ae32492 (diff) | |
download | mxe-793d2a88f9a9833c1d15dfac8a1fcbf22b851d9f.zip mxe-793d2a88f9a9833c1d15dfac8a1fcbf22b851d9f.tar.gz mxe-793d2a88f9a9833c1d15dfac8a1fcbf22b851d9f.tar.bz2 |
package vtk: disable gui components in native build
Diffstat (limited to 'src/vtk.mk')
-rw-r--r-- | src/vtk.mk | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -23,7 +23,12 @@ define $(PKG)_BUILD # first we need a native build to create the compile tools mkdir '$(1)/native_build' - cd '$(1)/native_build' && cmake -DCMAKE_BUILD_TYPE='Release' .. + cd '$(1)/native_build' && cmake \ + -DCMAKE_BUILD_TYPE='Release' \ + -DBUILD_TESTING=FALSE \ + -DOPENGL_INCLUDE_DIR='$(1)/Utilities/ParseOGLExt/headers' \ + -DVTK_USE_RENDERING=FALSE \ + .. # only the newly created CompileTools target need to be built $(MAKE) -C '$(1)/native_build' -j '$(JOBS)' VERBOSE=1 CompileTools |