mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-08 10:29:09 +08:00
qt 6.5.1 original
This commit is contained in:
71
tests/auto/corelib/plugin/qpluginloader/tst/CMakeLists.txt
Normal file
71
tests/auto/corelib/plugin/qpluginloader/tst/CMakeLists.txt
Normal file
@ -0,0 +1,71 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#####################################################################
|
||||
## tst_qpluginloader Test:
|
||||
#####################################################################
|
||||
|
||||
# Collect test data
|
||||
list(APPEND test_data "../elftest")
|
||||
list(APPEND test_data "../machtest")
|
||||
|
||||
qt_internal_add_test(tst_qpluginloader
|
||||
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../"
|
||||
SOURCES
|
||||
../fakeplugin.cpp
|
||||
../theplugin/plugininterface.h
|
||||
../tst_qpluginloader.cpp
|
||||
LIBRARIES
|
||||
staticplugin
|
||||
TESTDATA ${test_data}
|
||||
)
|
||||
|
||||
add_dependencies(tst_qpluginloader tst_qpluginloaderlib staticplugin theplugin)
|
||||
if (UNIX)
|
||||
if(NOT APPLE)
|
||||
add_dependencies(tst_qpluginloader theoldplugin)
|
||||
endif()
|
||||
if (NOT ANDROID AND NOT APPLE)
|
||||
add_dependencies(tst_qpluginloader almostplugin)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(ANDROID)
|
||||
add_compile_definitions(ANDROID_ARCH="${CMAKE_ANDROID_ARCH_ABI}")
|
||||
set(plugins
|
||||
theplugin
|
||||
theoldplugin
|
||||
tst_qpluginloaderlib
|
||||
)
|
||||
set(extra_libs)
|
||||
foreach(plugin IN LISTS plugins)
|
||||
list(APPEND extra_libs
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/../bin/lib${plugin}_${CMAKE_ANDROID_ARCH_ABI}.so")
|
||||
endforeach()
|
||||
set_target_properties(tst_qpluginloader PROPERTIES
|
||||
QT_ANDROID_EXTRA_LIBS "${extra_libs}"
|
||||
)
|
||||
endif()
|
||||
|
||||
## Scopes:
|
||||
#####################################################################
|
||||
|
||||
qt_internal_extend_target(tst_qpluginloader CONDITION QT_FEATURE_private_tests
|
||||
LIBRARIES
|
||||
Qt::CorePrivate
|
||||
)
|
||||
|
||||
qt_internal_extend_target(tst_qpluginloader CONDITION CMAKE_BUILD_TYPE STREQUAL Debug AND WIN32 AND debug_and_release
|
||||
LIBRARIES
|
||||
# Remove: L../staticplugin/debug
|
||||
)
|
||||
|
||||
qt_internal_extend_target(tst_qpluginloader CONDITION WIN32 AND debug_and_release AND NOT CMAKE_BUILD_TYPE STREQUAL Debug
|
||||
LIBRARIES
|
||||
# Remove: L../staticplugin/release
|
||||
)
|
||||
|
||||
qt_internal_extend_target(tst_qpluginloader CONDITION UNIX OR NOT debug_and_release
|
||||
LIBRARIES
|
||||
# Remove: L../staticplugin
|
||||
)
|
Reference in New Issue
Block a user