Difference between revisions of "OpenIGTLink/Library/Build"

From NAMIC Wiki
Jump to: navigation, search
Line 1: Line 1:
 
[[OpenIGTLink | << OpenIGTLink]] | [[OpenIGTLink/Library | Library]]
 
[[OpenIGTLink | << OpenIGTLink]] | [[OpenIGTLink/Library | Library]]
 
= Step by step instructions to build the basic platform =
 
  
 
== Linux / Mac OS X ==
 
== Linux / Mac OS X ==
=Build Open IGT Link Example program=
 
<!--
 
In the Open IGT Link Library, there is an example program that sends dummy tracking data through the Open IGT Link connection.
 
(Before start the following process, please make sure that you are in the different directory from the one where you worked on the 3D Slicer Open IGT Link module; the directory name is the same!)
 
-->
 
  
First obtain the source code from the repository. In Linux and Mac, run:
+
First obtain the source code from the repository. Open the terminal and run:
  
 
   $ svn co http://svn.na-mic.org/NAMICSandBox/trunk/OpenIGTLink OpenIGTLink
 
   $ svn co http://svn.na-mic.org/NAMICSandBox/trunk/OpenIGTLink OpenIGTLink
Line 22: Line 15:
  
 
   $ make
 
   $ make
 +
 +
You may install the library into your disk (optional). Run
 +
 +
  $ make install
  
 
== Windows ==
 
== Windows ==

Revision as of 16:04, 15 July 2008

Home < OpenIGTLink < Library < Build

<< OpenIGTLink | Library

Linux / Mac OS X

First obtain the source code from the repository. Open the terminal and run:

 $ svn co http://svn.na-mic.org/NAMICSandBox/trunk/OpenIGTLink OpenIGTLink

Then configure using CMake. The library requires CMake version higher than 2.4.

 $ mkdir OpenIGTLink-build
 $ cd OpenIGTLink-build
 $ ccmake ../OpenIGTLink

Then CMake configuration screen shows up on your terminal. Normally, you don't need to change any options. Just press the 'c' key (configure) followed by the 'g' key (generate). and quit the configuration screen. Now you are ready to build the software.

 $ make

You may install the library into your disk (optional). Run

 $ make install

Windows

  • Download SVN Windows client if you don't have one already
  • You will also need CMake and a C/C++ compiler as Microsoft Visual C++
  • Download out the source code from SVN
  • Run CMake
    • Where is the source code: C:\Devel\OpenIGT\OpenIGTLink
    • Where to build the binaries: C:\Devel\OpenIGT\build
    • Click "Configure" and select your compiler (usually just click "OK")
    • Message: "Build directory does not exit, should I create it?" - click "OK"
    • It might give a "pdflatex" error, just ignore it for now
    • Click "Configure"
    • Click "OK" to close CMake
  • Start Visual C and compile the project (C:\Devel\OpenIGT\build\OpenIGTLink.sln)

If all went OK you will have the executable and the library:

  • C:\Devel\OpenIGT\build\Testing\debug\igtlSocketTest.exe
  • C:\Devel\OpenIGT\build\Source\debug\OpenIGTLink.lib