aboutsummaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: 16a21f1e1f5d5dfab0d4344d958fe83f7fa760d9 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Find includes in corresponding build directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)

# Instruct CMake to run moc automatically when needed.
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)

set(poi_SRC
        # main
        main.cpp
        browser.cpp
        browser.h
        session.cpp
        session.h
        profilemanager.cpp
        profilemanager.h
        ../data/resources.qrc

        # main window
        mainwindow/mainwindow.cpp
        mainwindow/mainwindow.h
        mainwindow/mainwindow.ui
        mainwindow/subwindow.cpp
        mainwindow/subwindow.h
        mainwindow/widgets/dockwidget.cpp
        mainwindow/widgets/dockwidget.h
        mainwindow/widgets/navigationbar.cpp
        mainwindow/widgets/navigationbar.h
        mainwindow/widgets/searchform.cpp
        mainwindow/widgets/searchform.h
        mainwindow/widgets/searchform.ui
        mainwindow/widgets/tabwidget.cpp
        mainwindow/widgets/tabwidget.h

        # webengine
        webengine/urlinterceptor.cpp
        webengine/urlinterceptor.h
        webengine/webpage.cpp
        webengine/webpage.h
        webengine/webview.cpp
        webengine/webview.h
        webengine/widgets/pagetoolsmenu.cpp
        webengine/widgets/pagetoolsmenu.h

        # plugin interfaces
        plugin.h
)

if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
    add_executable(poi WIN32 ${poi_SRC})
else()
    add_executable(poi ${poi_SRC})
endif()

target_include_directories(poi
        PRIVATE ${Boost_INCLUDE_DIRS}
        PRIVATE ../3rd-party
        PRIVATE ../lib ../plugins
        PRIVATE ../lib/configuration
        PRIVATE ../lib/web)

target_link_libraries(poi
        Qt5::Core Qt5::Widgets Qt5::Concurrent Qt5::WebEngineWidgets
        ${Boost_LIBRARIES}
        SingleApplication
        about
        addressbar
        configuration
        bookmarks downloads web
)

if(Plasma)
    target_link_libraries(poi KF5::WindowSystem)
    target_compile_definitions(poi
        PRIVATE PLASMA_BLUR     # give the main window a translucent background and blur
    )
endif(Plasma)

target_compile_definitions(poi
    PRIVATE QAPPLICATION_CLASS=QApplication
    PRIVATE QTBUG_65223_WORKAROUND
    #PRIVATE QTBUG_68224_WORKAROUND
)

install(TARGETS poi RUNTIME DESTINATION bin CONFIGURATIONS Release)