View as source file or XML.
cd {ZORBABUILD}
cmake [ -G generator ] [ -D option=value ... ] {ZORBASRC}
where {ZORBASRC} may be an absolute or a relative path to your Zorba source directory. For example, if you used the convention of creating the build directory as a subdirectory of the source directory, you can just type cmake ..
along with any necessary -G or -D options.cmake -G "Visual Studio 10" {ZORBASRC}The list of available Generators for your CMake installation can be seen by typing
cmake --help
.cmake -D ZORBA_NO_ICU=ON {ZORBASRC}
A complete list of Zorba's configuration parameters can be found here: Zorba Configuration Parameters. CMake itself also has some configuration parameters that may be important for you; here are three of the most common:cmake -D CMAKE_PREFIX_PATH=/opt {ZORBASRC}
cmake -D CMAKE_BUILD_TYPE=Debug {ZORBASRC}
This is not necessary for IDE-based workspaces; in that case, you may select the type of build from within the IDE.