Mercurial > hg > orthanc
view Plugins/Samples/Basic/CMakeLists.txt @ 1371:f528849ee9f7 query-retrieve
DICOM Query/Retrieve available from Orthanc Explorer
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 27 May 2015 17:33:13 +0200 |
parents | f497a72d9f71 |
children | 92da9e1c2daa |
line wrap: on
line source
cmake_minimum_required(VERSION 2.8) project(Basic) if (${CMAKE_COMPILER_IS_GNUCXX}) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -pedantic -Werror") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic -Werror") endif() include_directories(${CMAKE_SOURCE_DIR}/../../Include/) add_library(PluginTest SHARED Plugin.c) if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") # Linking with "pthread" is necessary, otherwise the software crashes # http://sourceware.org/bugzilla/show_bug.cgi?id=10652#c17 target_link_libraries(PluginTest pthread dl) endif()