X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=appli%2Fexamples%2Fplugins%2FCMakeLists.txt;h=0712ef1061e81baeedaf498ae615649756f1689c;hb=24d0c2ad34de2cbd89fed76058f2995cdf81d239;hp=752c62b7acf74a4284788acca52f5d803731a0de;hpb=b67cad9ff3c38b4e99ac48a4852e9e94cb879c6a;p=cpPlugins.git diff --git a/appli/examples/plugins/CMakeLists.txt b/appli/examples/plugins/CMakeLists.txt index 752c62b..0712ef1 100644 --- a/appli/examples/plugins/CMakeLists.txt +++ b/appli/examples/plugins/CMakeLists.txt @@ -1,14 +1,23 @@ SET( examples_SOURCES + example_GuessPlugins + example_LoadPlugins example_LoadPluginsFile example_LoadPluginsDirectory example_ReadWriteImage example_ReadWriteImageWithWorkspace + example_ShowImage ) FOREACH(example ${examples_SOURCES}) ADD_EXECUTABLE(${example} ${example}.cxx) - TARGET_LINK_LIBRARIES(${example} cpPlugins) + TARGET_LINK_LIBRARIES(${example} cpExtensions cpPlugins) ENDFOREACH(example) +IF(USE_QT4) + SUBDIRS( + QT + ) +ENDIF(USE_QT4) + ## eof - $RCSfile$