# HG changeset patch # User Sebastien Jodogne # Date 1562568468 -7200 # Node ID 4e34fd3e226a63161b25feade8db444c716603ce # Parent 9ea218c90057c6b1226c3884232682a1e4ca0335 ubuntu 18.04 diff -r 9ea218c90057 -r 4e34fd3e226a LinuxCompilation.txt --- a/LinuxCompilation.txt Wed Jul 03 10:31:06 2019 +0200 +++ b/LinuxCompilation.txt Mon Jul 08 08:47:48 2019 +0200 @@ -145,6 +145,30 @@ # ninja +SUPPORTED - Ubuntu 18.04 LTS +---------------------------- + +# sudo apt-get install build-essential unzip cmake mercurial \ + uuid-dev libcurl4-openssl-dev liblua5.3-0-dev \ + libgtest-dev libpng-dev libsqlite3-dev libssl-dev libjpeg-dev \ + zlib1g-dev libdcmtk2-dev libboost-all-dev libwrap0-dev \ + libcharls-dev libjsoncpp-dev libpugixml-dev locales + +# cmake -DALLOW_DOWNLOADS=ON \ + -DUSE_GOOGLE_TEST_DEBIAN_PACKAGE=ON \ + -DUSE_SYSTEM_CIVETWEB=OFF \ + -DDCMTK_LIBRARIES=dcmjpls \ + -DCMAKE_BUILD_TYPE=Release \ + ~/Orthanc +# make + + +NB: A suitable environment for locales can be setup as follows: + +# echo "en_US.UTF-8 UTF-8" > /etc/locale.gen +# locale-gen + + SUPPORTED - Fedora 20-22 ------------------------