aboutsummaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: e8f2794af8273d5550c6e84c81c00ea3bc9efe76 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# 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(srclist
        # main
        main.cpp
        browser.cpp
        browser.h
        session.cpp
        session.h
        util.cpp
        util.h

        # resources (icons, etc)
        ${PROJECT_SOURCE_DIR}/data/resources.qrc

        # main window
        mainwindow/mainwindow.cpp
        mainwindow/mainwindow.h
        mainwindow/mainwindow.ui
        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

        # subwindow
        subwindow/subwindow.cpp
        subwindow/subwindow.h
        subwindow/tabwidget.cpp
        subwindow/tabwidget.h

        # webengine
        webengine/filter.cpp
        webengine/filter.h
        webengine/urlinterceptor.cpp
        webengine/urlinterceptor.h
        webengine/webpage.cpp
        webengine/webpage.h
        webengine/webview.cpp
        webengine/webview.h

        # plugin interfaces
        plugin.h
)

# if you are using a custom build location for breakpad:
#if(Breakpad)
#    link_directories("${BREAKPAD_LIBRARY_DIRS}")
#endif()

if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
    add_executable(${poi_exe} WIN32 ${srclist} ${PROJECT_SOURCE_DIR}/data/windows.rc)
else()
    add_executable(${poi_exe} ${srclist})
endif()

target_include_directories(${poi_exe}
        PRIVATE ${Boost_INCLUDE_DIRS}
        PRIVATE ${PROJECT_SOURCE_DIR}/lib
        PRIVATE ${PROJECT_SOURCE_DIR}/plugins
)

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

if(Breakpad)
    find_package(Threads REQUIRED)

    target_link_libraries(${poi_exe} Threads::Threads ${BREAKPAD_LIBRARIES})
    target_include_directories(${poi_exe} PRIVATE ${BREAKPAD_INCLUDE_DIRS})
    target_compile_options(${poi_exe} PRIVATE ${BREAKPAD_CFLAGS_OTHER})

    target_compile_definitions(${poi_exe} PRIVATE BreakpadEnabled)
endif()

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

target_compile_definitions(${poi_exe}
    PRIVATE QAPPLICATION_CLASS=QApplication
    PRIVATE POI_NAME=\"${poi_name}\"
    PRIVATE QTBUG_65223_WORKAROUND
    #PRIVATE QTBUG_68224_WORKAROUND
)

install(TARGETS ${poi_exe} RUNTIME DESTINATION ${installPath_bin} CONFIGURATIONS Release)