diff INSTALL @ 57:4bc019d2f969 orthanc-renaming

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