summaryrefslogtreecommitdiffstats
path: root/src/sql/doc/snippets/code/CMakeLists.txt
blob: 79bf9575017fa357fdec2a43a3c5d0de60cf538b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

add_library(code_snippets OBJECT
    doc_src_sql-driver.cpp
    src_sql_kernel_qsqldatabase.cpp
    src_sql_kernel_qsqlerror.cpp
    src_sql_kernel_qsqlresult.cpp
    src_sql_kernel_qsqldriver.cpp
    src_sql_models_qsqlquerymodel.cpp
)

target_link_libraries(code_snippets PRIVATE
    Qt::Core
    Qt::Sql
)