Mercurial > hg > orthanc
changeset 1325:a761deb85729
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 13 Feb 2015 15:03:51 +0100 |
parents | 1609f71dc259 |
children | 59b603763f43 |
files | Plugins/Samples/ServeFolders/CMakeLists.txt |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Plugins/Samples/ServeFolders/CMakeLists.txt Fri Feb 13 14:37:52 2015 +0100 +++ b/Plugins/Samples/ServeFolders/CMakeLists.txt Fri Feb 13 15:03:51 2015 +0100 @@ -23,7 +23,7 @@ endif() include_directories(${CMAKE_SOURCE_DIR}/../../Include/) -add_library(ServerFolders SHARED +add_library(ServeFolders SHARED Plugin.cpp ${THIRD_PARTY_SOURCES} ) @@ -31,5 +31,5 @@ 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(ServerFolders dl rt) + target_link_libraries(ServeFolders dl rt) endif()