comparison Plugins/Samples/Basic/CMakeLists.txt @ 903:06b9a30f1e6d plugins

fix path
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 18 Jun 2014 15:26:35 +0200
parents 5c255e465b33
children f497a72d9f71
comparison
equal deleted inserted replaced
902:5c255e465b33 903:06b9a30f1e6d
5 if (${CMAKE_COMPILER_IS_GNUCXX}) 5 if (${CMAKE_COMPILER_IS_GNUCXX})
6 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -pedantic -Werror") 6 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -pedantic -Werror")
7 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic -Werror") 7 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic -Werror")
8 endif() 8 endif()
9 9
10 include_directories(${CMAKE_SOURCE_DIR}/../../../../Plugins/OrthancCPlugin/) 10 include_directories(${CMAKE_SOURCE_DIR}/../../OrthancCPlugin/)
11 add_library(PluginTest SHARED Plugin.c) 11 add_library(PluginTest SHARED Plugin.c)
12 12
13 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") 13 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
14 # Linking with "pthread" is necessary, otherwise the software crashes 14 # Linking with "pthread" is necessary, otherwise the software crashes
15 # http://sourceware.org/bugzilla/show_bug.cgi?id=10652#c17 15 # http://sourceware.org/bugzilla/show_bug.cgi?id=10652#c17