-
Notifications
You must be signed in to change notification settings - Fork 17
/
InpaintingVectorized.cmake
24 lines (21 loc) · 1.33 KB
/
InpaintingVectorized.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
add_subdirectory(Interactive)
QT4_WRAP_UI(InpaintingVectorizedUISrcs Interactive/BasicViewerWidget.ui
Interactive/TopPatchesWidget.ui Interactive/TopPatchesDialog.ui
Interactive/PriorityViewerWidget.ui
Interactive/ManualPatchSelectionDialog.ui)
QT4_WRAP_CPP(InpaintingVectorizedMOCSrcs Interactive/BasicViewerWidget.h Visitors/InformationVisitors/DisplayVisitor.hpp
Visitors/NearestNeighborsDisplayVisitor.hpp
#NearestNeighbor/VisualSelectionBest.hpp
Interactive/TopPatchesWidget.h
Interactive/TopPatchesDialog.h
Interactive/Delegates/PixmapDelegate.h
Interactive/PriorityViewerWidget.h
Interactive/ManualPatchSelectionDialog.h)
ADD_EXECUTABLE(InpaintingVectorized InpaintingVectorized.cpp
Interactive/Layer.cpp
Interactive/Delegates/PixmapDelegate.cpp
Interactive/MovablePatch.cpp
Interactive/InteractorStyleImageWithDrag.cpp Interactive/ImageCamera.cpp
${InpaintingVectorizedUISrcs} ${InpaintingVectorizedMOCSrcs})
TARGET_LINK_LIBRARIES(InpaintingVectorized ${PatchBasedInpainting_libraries})
INSTALL( TARGETS InpaintingVectorized RUNTIME DESTINATION ${INSTALL_DIR} )