# # SPDX-FileCopyrightText: 2021 Arjen Hiemstra # # SPDX-License-Identifier: BSD-3-Clause set(SOURCE_DIR "@CMAKE_CURRENT_SOURCE_DIR@") set(INSTALL_DIR "@CMAKE_INSTALL_PREFIX@/test") set(SHARED "@BUILD_SHARED_LIBS@") set(QML_ONLY "@QML_ONLY@") set(DEPENDS "@DEPENDS@") function(check_file_exists file) if (NOT EXISTS ${file}) message(FATAL_ERROR "File \"${file}\" does not exist") endif() endfunction() function (check_file_contents) cmake_parse_arguments(ARGS "" "GENERATED;EXPECTED" "" ${ARGN}) if (NOT EXISTS "${ARGS_GENERATED}") message(FATAL_ERROR "${ARGS_GENERATED} was not generated") endif() file(READ "${ARGS_GENERATED}" generated_contents) if (NOT EXISTS "${ARGS_EXPECTED}") message(FATAL_ERROR "Original ${ARGS_EXPECTED} was not found") endif() file(READ "${ARGS_EXPECTED}" original_contents) if (NOT "${generated_contents}" STREQUAL "${original_contents}") message(FATAL_ERROR "${generated_file} contains '${generated_contents}' instead of '${original_contents}'") endif() endfunction() if (SHARED) check_file_contents( GENERATED "${INSTALL_DIR}/Test/QmlModule.qml" EXPECTED "${SOURCE_DIR}/QmlModule.qml" ) if (NOT QML_ONLY AND NOT DEPENDS) if (WIN32) check_file_exists("${INSTALL_DIR}/Test/TestModule.dll") else() check_file_exists("${INSTALL_DIR}/Test/libTestModule.so") endif() check_file_contents( GENERATED "${INSTALL_DIR}/Test/qmldir" EXPECTED "${SOURCE_DIR}/qmldir_expected_full" ) endif() if (QML_ONLY AND NOT DEPENDS) check_file_contents( GENERATED "${INSTALL_DIR}/Test/qmldir" EXPECTED "${SOURCE_DIR}/qmldir_expected_qmlonly" ) endif() if (DEPENDS) check_file_contents( GENERATED "${INSTALL_DIR}/Test/qmldir" EXPECTED "${SOURCE_DIR}/qmldir_expected_depends" ) endif() else() if (WIN32) check_file_exists("${INSTALL_DIR}/Test/TestModule.lib") else() check_file_exists("${INSTALL_DIR}/Test/libTestModule.a") endif() endif()