From 6924d8dbea0210228cac9a53d31b3078f13789ff Mon Sep 17 00:00:00 2001 From: Guillaume Pasero Date: Tue, 9 Feb 2016 16:36:37 +0100 Subject: [PATCH] COMP: fix duplicated target problem, prevented install on MacOS and Win --- Modules/Visualization/IceViewer/src/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/Visualization/IceViewer/src/CMakeLists.txt b/Modules/Visualization/IceViewer/src/CMakeLists.txt index 0f872c18a6..7335b30d64 100644 --- a/Modules/Visualization/IceViewer/src/CMakeLists.txt +++ b/Modules/Visualization/IceViewer/src/CMakeLists.txt @@ -11,6 +11,6 @@ target_link_libraries(OTBIceViewer otb_module_target(OTBIceViewer) -add_executable(otbIceViewer otbIce.cxx) -target_link_libraries(otbIceViewer OTBIceViewer) -otb_module_target(otbIceViewer) +add_executable(iceViewer otbIce.cxx) +target_link_libraries(iceViewer OTBIceViewer) +otb_module_target(iceViewer) -- GitLab