view Resources/BuildInstructions.txt @ 203:59dc84e00a4c

sync, support for linux standard base, upgrade to gdcm 2.8.4
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 04 Jan 2018 09:48:02 +0100
parents 4f543f8b9b5d
children
line wrap: on
line source

Generic GNU/Linux (static linking)
==================================

# mkdir Build
# cd Build
# cmake .. -DCMAKE_BUILD_TYPE=Debug -DSTATIC_BUILD=ON
# make


Dynamic linking for Ubuntu 14.04
================================

# mkdir Build
# cd Build
# cmake .. -DCMAKE_BUILD_TYPE=Debug -DUSE_GOOGLE_TEST_DEBIAN_PACKAGE=ON -DUSE_SYSTEM_ORTHANC_SDK=OFF
# make


Dynamic linking for Ubuntu 12.10
================================

# mkdir Build
# cd Build
# cmake .. -DCMAKE_BUILD_TYPE=Debug \
  -DALLOW_DOWNLOADS=ON \
  -DUSE_SYSTEM_JSONCPP=OFF \
  -DUSE_SYSTEM_PUGIXML=OFF \
  -DUSE_GOOGLE_TEST_DEBIAN_SOURCE_PACKAGE=ON
# make


Cross-compiling for Windows from GNU/Linux using MinGW
======================================================

# mkdir Build
# cd Build
# cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=`pwd`/../Orthanc/Resources/MinGWToolchain.cmake
# make


Notes
=====

List the public symbols exported by the shared library under
GNU/Linux:

# nm -C -D --defined-only ./libOrthancDicomWeb.so