mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-01-24 12:54:29 +08:00
23 lines
676 B
CMake
23 lines
676 B
CMake
|
# Copyright (C) 2022 The Qt Company Ltd.
|
||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
#####################################################################
|
||
|
## tst_qtextmarkdownimporter Test:
|
||
|
#####################################################################
|
||
|
|
||
|
# Collect test data
|
||
|
list(APPEND test_data "data/thematicBreaks.md")
|
||
|
list(APPEND test_data "data/headingBulletsContinuations.md")
|
||
|
list(APPEND test_data "data/fuzz20450.md")
|
||
|
list(APPEND test_data "data/fuzz20580.md")
|
||
|
|
||
|
qt_internal_add_test(tst_qtextmarkdownimporter
|
||
|
SOURCES
|
||
|
tst_qtextmarkdownimporter.cpp
|
||
|
LIBRARIES
|
||
|
Qt::CorePrivate
|
||
|
Qt::Gui
|
||
|
Qt::GuiPrivate
|
||
|
TESTDATA ${test_data}
|
||
|
)
|