Mercurial > hg > orthanc
annotate README @ 479:0cd977e94479
initial commit of the c++ client
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 16 Jul 2013 09:08:09 +0200 |
parents | 694f06a84bf4 |
children | c5f1986d9ddc |
rev | line source |
---|---|
57 | 1 Orthanc - A Lightweight, RESTful DICOM Server |
2 ============================================= | |
3 | |
0 | 4 |
5 General Information | |
6 ------------------- | |
7 | |
8 General information about this software can be found on our Google | |
9 Code hosting page: | |
57 | 10 http://code.google.com/p/orthanc/ |
0 | 11 |
57 | 12 The instructions for building Orthanc can be found in the "INSTALL" |
0 | 13 file. |
14 | |
15 | |
16 Supported Platforms | |
17 ------------------- | |
18 | |
19 Currently, the supported platforms are: | |
20 | |
21 * Linux 32bit. | |
22 * Linux 64bit. | |
7 | 23 * Windows 32bit. |
0 | 24 |
25 | |
26 Supported Toolchains | |
27 -------------------- | |
28 | |
57 | 29 Orthanc can currently be built using the following compiling |
0 | 30 toolchains: |
31 | |
32 * Native Linux compilation, with gcc. | |
7 | 33 * Native Windows compilation, with Microsoft Visual Studio. |
34 * Cross-compilation for Windows under Linux, with MinGW. | |
0 | 35 |
36 | |
17 | 37 Licensing |
38 --------- | |
39 | |
136 | 40 Orthanc is licensed under the GPLv3 license, with the OpenSSL |
41 exception: | |
42 http://people.gnome.org/~markmc/openssl-and-the-gpl.html | |
43 | |
449 | 44 We also kindly require scientific works and clinical studies that make |
45 use of Orthanc to cite Orthanc in their associated | |
46 publications. Similarly, we require open-source and closed-source | |
47 products that make use of Orthanc to warn us about this use. You can | |
48 cite our work using the following BibTeX entry: | |
17 | 49 |
449 | 50 @inproceedings{Jodogne:ISBI2013, |
51 author = "Jodogne, S. and Bernard, C. and Devillers, M. and Lenaerts, E. and Coucke, P.", | |
52 title = "Orthanc -- {A} Lightweight, {REST}ful {DICOM} Server for Healthcare and Medical Research", | |
53 booktitle = "Proc. of the International Symposium on Biomedical Imaging ({ISBI})", | |
54 year = "2013", | |
55 } | |
17 | 56 |
57 | |
58 Licensing of special directories | |
59 -------------------------------- | |
60 | |
61 The following directories have separate licensing terms: | |
62 | |
63 * The file of the "Core/SQLite/" directory are licensed under the | |
64 3-clause BSD license, as they are derived from the Chromium project. | |
65 | |
66 | |
0 | 67 Content |
68 ------- | |
69 | |
70 This archive contains the following directories: | |
71 | |
72 * Core/ - The core C++ classes (independent of DCMTK) | |
479
0cd977e94479
initial commit of the c++ client
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
449
diff
changeset
|
73 * OrthancCppClient/ - Code of the C++ client |
57 | 74 * OrthancExplorer/ - Code of the Web application (HTML5/Javascript) |
75 * OrthancServer/ - Code of the Orthanc server (depends on DCMTK) | |
0 | 76 * Resources/ - Scripts, resources for building third-party code |
77 * UnitTests/ - Unit tests | |
78 | |
79 This archive contains the following files: | |
80 | |
81 * AUTHORS - The list of the authors | |
82 * CMakeLists.txt - The main build script | |
83 * COPYING - The GPLv3 license | |
57 | 84 * INSTALL - How to build Orthanc |
0 | 85 * README - This file |
86 * THANKS - The list of the contributors | |
7 | 87 * NEWS - The history of main changes between versions |
0 | 88 |
7 | 89 We have decided not to maintain a separate "ChangeLog" file. Each |
57 | 90 commit to the official Orthanc Mercurial repository should be |
7 | 91 associated with a description of the changes. |