blob: 270cd45156c6209a66dfd6ce341838a61f2426fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
find_package(Qt5 REQUIRED COMPONENTS Widgets Concurrent)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
add_executable(qdeduper
main.cpp
mingui.cpp
imageitem.cpp
sigdb_qt.cpp
filescanner.cpp
pathchooser.cpp
)
target_link_libraries(qdeduper
xsig
Qt5::Widgets
Qt5::Concurrent
)
|