VES/Download And Build Instructions: Difference between revisions

From KitwarePublic
< VES
Jump to navigationJump to search
No edit summary
No edit summary
Line 2: Line 2:


This page details the minimum commands required to download and build VES and the example applications.  For more detailed information see the [[VES/Developers Guide|Developer's Guide]].
This page details the minimum commands required to download and build VES and the example applications.  For more detailed information see the [[VES/Developers Guide|Developer's Guide]].


==Checkout the source from Git==
==Checkout the source from Git==
Line 9: Line 8:


  $ git clone git://vtk.org/VES.git
  $ git clone git://vtk.org/VES.git


==Build with CMake==
==Build with CMake==
Line 42: Line 40:


  $ ./run.sh
  $ ./run.sh


====iOS instructions====
====iOS instructions====
Line 52: Line 49:
  $ cd build
  $ cd build
  $ make -j4
  $ make -j4


Next, build and run the KiwiViewer application using Xcode.
Next, build and run the KiwiViewer application using Xcode.


  $ open Apps/iOS/Kiwi/Kiwi.xcodeproj
  $ open Apps/iOS/Kiwi/Kiwi.xcodeproj

Revision as of 01:25, 18 January 2012

Introduction

This page details the minimum commands required to download and build VES and the example applications. For more detailed information see the Developer's Guide.

Checkout the source from Git

Use Git to checkout the VES source code with the command:

$ git clone git://vtk.org/VES.git

Build with CMake

CMake is used to configure Makefiles for the build. Before building, ensure that Android and/or iOS SDKs are installed. See the Developer's Guide for more information.

Android instructions

The following commands will compile vtkmodular and ves libraries for the Android.

$ export ANDROID_NDK=/path/to/installed/android-ndk
$ cd Apps/Android/CMakeBuild
$ cmake -P configure.cmake
$ cd build
$ make -j4

Next, build and run the KiwiViewer application. Ant version 1.8 or higher is required.

$ cd Apps/Android/Kiwi
$
$ # if android, adb, ant, or cmake are not in your PATH, edit tools.sh to enter the correct paths
$
$ ./configure_cmake.sh
$ ./configure_ant.sh
$ ./compile.sh

Use adb to confirm that your device is listed:

$ adb devices

Run KiwiViewer on the device:

$ ./run.sh

iOS instructions

The following commands will compile vtkmodular and ves libraries for the iOS simulator and iOS device.

$ cd Apps/iOS/CMakeBuild
$ cmake -P configure.cmake
$ cd build
$ make -j4

Next, build and run the KiwiViewer application using Xcode.

$ open Apps/iOS/Kiwi/Kiwi.xcodeproj