886
|
1 cmake_minimum_required(VERSION 2.8)
|
|
2
|
|
3 project(Basic)
|
|
4
|
894
|
5 if (${CMAKE_COMPILER_IS_GNUCXX})
|
|
6 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -pedantic -Werror")
|
|
7 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic -Werror")
|
|
8 endif()
|
|
9
|
903
|
10 include_directories(${CMAKE_SOURCE_DIR}/../../OrthancCPlugin/)
|
886
|
11 add_library(PluginTest SHARED Plugin.c)
|
|
12
|
|
13 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
|
14 # Linking with "pthread" is necessary, otherwise the software crashes
|
|
15 # http://sourceware.org/bugzilla/show_bug.cgi?id=10652#c17
|
|
16 target_link_libraries(PluginTest pthread dl)
|
|
17 endif()
|