aboutsummaryrefslogtreecommitdiff
path: root/lib/web/CMakeLists.txt
blob: 95155662da4fc1f626b443f0960ad78554f25f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Find includes in corresponding build directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)

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

add_library(web
    webprofile.cpp
    webprofile.h

    urlfilter/filterdomain.cpp
    urlfilter/filterdomain.h
    urlfilter/filterrule.cpp
    urlfilter/filterrule.h

    urlfilter/adblockrule.cpp
    urlfilter/adblockrule.h
)

target_link_libraries(web Qt5::WebEngineWidgets)