mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-01-24 21:05:05 +08:00
38 lines
1.0 KiB
CMake
38 lines
1.0 KiB
CMake
|
# Copyright (C) 2022 The Qt Company Ltd.
|
||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
#####################################################################
|
||
|
## tst_qsslcertificate Test:
|
||
|
#####################################################################
|
||
|
|
||
|
# This test requires private tests to properly build
|
||
|
if (NOT QT_FEATURE_private_tests)
|
||
|
return()
|
||
|
endif()
|
||
|
|
||
|
# Collect test data
|
||
|
file(GLOB_RECURSE test_data_glob
|
||
|
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
certificates/*)
|
||
|
list(APPEND test_data ${test_data_glob})
|
||
|
file(GLOB_RECURSE test_data_glob
|
||
|
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
more-certificates/*)
|
||
|
list(APPEND test_data ${test_data_glob})
|
||
|
file(GLOB_RECURSE test_data_glob
|
||
|
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
verify-certs/*)
|
||
|
list(APPEND test_data ${test_data_glob})
|
||
|
file(GLOB_RECURSE test_data_glob
|
||
|
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
pkcs12/*)
|
||
|
list(APPEND test_data ${test_data_glob})
|
||
|
|
||
|
qt_internal_add_test(tst_qsslcertificate
|
||
|
SOURCES
|
||
|
tst_qsslcertificate.cpp
|
||
|
LIBRARIES
|
||
|
Qt::Network
|
||
|
TESTDATA ${test_data}
|
||
|
)
|