aboutsummaryrefslogtreecommitdiff
path: root/plugins/ProfileEditor/CMakeLists.txt
blob: 3eaa0f5c73aa5a7564866bd1a62993a19f01df06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cmake_minimum_required(VERSION 3.1.0)

find_package(Qt5Core REQUIRED)
find_package(Qt5Widgets REQUIRED)
find_package(Qt5WebEngineWidgets REQUIRED)

set(CMAKE_AUTOMOC ON)

add_library(ProfileEditorPlugin SHARED
        profileeditorplugin.cpp
        profileeditorplugin.h)

target_include_directories(ProfileEditorPlugin
        PUBLIC ..)

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