aboutsummaryrefslogtreecommitdiff
path: root/qdeduper/CMakeLists.txt
blob: 75f7de004f21f1d735ddb34117149568f7e1eb13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
set(CMAKE_INCLUDE_CURRENT_DIR ON)

option(QDEDUPER_USE_QT6 "Build qdeduper with Qt 6" OFF)

if (QDEDUPER_USE_QT6)
    find_package(Qt6 REQUIRED COMPONENTS Widgets Concurrent)
else()
    find_package(Qt5 REQUIRED COMPONENTS Widgets Concurrent)
endif()

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
)

if (QDEDUPER_USE_QT6)
    target_link_libraries(qdeduper Qt6::Widgets Qt6::Concurrent)
else()
    target_link_libraries(qdeduper Qt5::Widgets Qt5::Concurrent)
endif()