aboutsummaryrefslogtreecommitdiff
path: root/plugins/ProfileEditor/CMakeLists.txt
blob: 0308fde6de6dd2b4e3950612d583ee003c55c7d1 (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
find_package(Qt5Core REQUIRED)
find_package(Qt5Widgets REQUIRED)
find_package(Qt5WebEngineWidgets REQUIRED)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)

add_library(ProfileEditorPlugin SHARED
        profileeditorplugin.cpp
        profileeditorplugin.h
        forms/profileview.cpp
        forms/profileview.h
        forms/profileview.ui
        forms/profilemanagerdialog.cpp
        forms/profilemanagerdialog.h
        forms/profilemanagerdialog.ui
)

target_include_directories(ProfileEditorPlugin
        PRIVATE ..
        PRIVATE ../../src/webengine)

target_link_libraries(ProfileEditorPlugin
        PRIVATE Qt5::Widgets
        PRIVATE Qt5::WebEngineWidgets)

install(TARGETS ProfileEditorPlugin LIBRARY DESTINATION lib/smolbote CONFIGURATIONS Release)