diff INSTALL @ 48:0a04c70747d9

renaming
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Sep 2012 15:36:45 +0200
parents 7908a4c25a18
children 4bc019d2f969
line wrap: on
line diff
--- a/INSTALL	Wed Sep 05 13:26:06 2012 +0200
+++ b/INSTALL	Wed Sep 05 15:36:45 2012 +0200
@@ -1,11 +1,11 @@
-Palantir - A Lightweight, RESTful DICOM Server
-==============================================
+Palanthir - A Lightweight, RESTful DICOM Server
+===============================================
 
 
 Dependencies
 ------------
 
-1) CMake: Palantir uses CMake (http://www.cmake.org/) to automate its
+1) CMake: Palanthir uses CMake (http://www.cmake.org/) to automate its
    building process. 
 
 2) Python: Some code is autogenerated through Python
@@ -26,17 +26,17 @@
 "ThirdPartyDownloads" directory.
 
 
-Building Palantir at a glance
------------------------------
+Building Palanthir at a glance
+------------------------------
 
-To build Palantir, you must:
+To build Palanthir, you must:
 
 1) Download the source code (either using Mercurial, or through the
    released versions). For the examples below, we assume the source
-   directory is "~/Palantir".
+   directory is "~/Palanthir".
 
 2) Create a build directory. For the examples below, we assume the
-   build directory is "~/PalantirBuild".
+   build directory is "~/PalanthirBuild".
 
 
 
@@ -45,26 +45,26 @@
 
 To build binaries with debug information:
 
-# cd ~/PalantirBuild
-# cmake -DCMAKE_BUILD_TYPE=DEBUG ~/Palantir
+# cd ~/PalanthirBuild
+# cmake -DCMAKE_BUILD_TYPE=DEBUG ~/Palanthir
 # make
 # make doc
 
 
 To build a release version:
 
-# cd ~/PalantirBuild
-# cmake -DCMAKE_BUILD_TYPE=RELEASE ~/Palantir
+# cd ~/PalanthirBuild
+# cmake -DCMAKE_BUILD_TYPE=RELEASE ~/Palanthir
 # make
 # make doc
 
 
-Under Linux, you have the possibility to dynamically link Palantir
+Under Linux, you have the possibility to dynamically link Palanthir
 against the shared libraries of your system, provided their version is
 recent enough. This greatly speeds up the compilation:
 
-# cd ~/PalantirBuild
-# cmake -DSTATIC_BUILD=OFF -DCMAKE_BUILD_TYPE=DEBUG ~/Palantir
+# cd ~/PalanthirBuild
+# cmake -DSTATIC_BUILD=OFF -DCMAKE_BUILD_TYPE=DEBUG ~/Palanthir
 # make
 
  
@@ -75,8 +75,8 @@
 To cross-compile Windows binaries under Linux using MinGW, please use
 the following command:
 
-# cd ~/PalantirBuild
-# cmake -DCMAKE_TOOLCHAIN_FILE=~/Palantir/Resources/MinGWToolchain.cmake -DCMAKE_BUILD_TYPE=DEBUG ~/Palantir
+# cd ~/PalanthirBuild
+# cmake -DCMAKE_TOOLCHAIN_FILE=~/Palanthir/Resources/MinGWToolchain.cmake -DCMAKE_BUILD_TYPE=DEBUG ~/Palanthir
 # make
 
 
@@ -84,8 +84,8 @@
 Native Windows build with MinGW (VERY SLOW)
 -------------------------------------------
 
-# cd [...]\PalantirBuild
-# cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=DEBUG [...]\Palantir
+# cd [...]\PalanthirBuild
+# cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=DEBUG [...]\Palanthir
 # mingw32-make
 
 
@@ -93,10 +93,10 @@
 Native Windows build with Microsoft Visual Studio 2005
 ------------------------------------------------------
 
-# cd [...]\PalantirBuild
-# cmake -G "Visual Studio 8 2005" [...]\Palantir
+# cd [...]\PalanthirBuild
+# cmake -G "Visual Studio 8 2005" [...]\Palanthir
 
-Then open the "[...]/PalantirBuild/Palantir.sln" with Visual Studio.
+Then open the "[...]/PalanthirBuild/Palanthir.sln" with Visual Studio.
 
 NOTES:
 * More recent versions of Visual Studio should also work.