Mercurial > hg > orthanc-dicomweb
view Resources/BuildInstructions.txt @ 4:a373f73e30b8
stow sample
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sat, 14 Mar 2015 16:39:00 +0100 |
parents | d5f459244111 |
children | c1223564bc80 |
line wrap: on
line source
Generic Linux (static linking) ============================== # mkdir Build # cd Build # cmake .. -DCMAKE_BUILD_TYPE=Debug -DALLOW_DOWNLOADS=ON -DSTATIC_BUILD=ON # 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_GTEST_DEBIAN_SOURCE_PACKAGE=ON # make Cross-compiling for Windows from Linux using MinGW ================================================== # mkdir Build # cd Build # cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=../Resources/MinGWToolchain.cmake # make Notes ===== List the public symbols exported by the shared library under Linux: # nm -C -D --defined-only ./libOrthancDicomWeb.so