Last active
August 29, 2015 13:56
-
-
Save luisibanez/8852252 to your computer and use it in GitHub Desktop.
ITK Emscripted shell configure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cmake \ | |
-DITK_BUILD_DEFAULT_MODULES:BOOL=OFF \ | |
-DBUILD_TESTING:BOOL=OFF \ | |
-DBUILD_EXAMPLES:BOOL=OFF \ | |
-DITKGroup_Core:BOOL=OFF \ | |
-DModule_ITKCommon:BOOL=ON \ | |
-DCMAKE_SIZEOF_UNSIGNED_SHORT=2 \ | |
-DCMAKE_TOOLCHAIN_FILE=/home/ibanez/src/emscripten/cmake/Platform/Emscripten.cmake \ | |
-DCMAKE_BUILD_TYPE=Debug\ | |
-G "Unix Makefiles" \ | |
~/src/ITK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Luis,
I am trying to make itk work with emscripten. Then I found your code.
This code does not work in my side (ITK 4.5.1, Fedora 19).
It shows
Does it work in your machine?
I would like to make a webapp using itk and vtk. I have checked xtk, emscripten, and google native client.
However currently none of them can be built successfully :(
Do you have any suggestion for it ?