Mercurial > hg > orthanc
view Resources/Samples/Plugins/Basic/CMakeLists.txt @ 889:d2a393061eb6 plugins
typos
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sat, 14 Jun 2014 20:12:11 +0200 |
parents | 29087d728e0a |
children | 690aeb4cb899 |
line wrap: on
line source
cmake_minimum_required(VERSION 2.8) project(Basic) 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()