1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #
- # Copyright (c) Contributors to the Open 3D Engine Project.
- # For complete copyright and license terms please see the LICENSE at the root of this distribution.
- #
- # SPDX-License-Identifier: Apache-2.0 OR MIT
- #
- #
- # if this platform does not support google tests, it cannot support testrunner and there is no point in continuing.
- if(NOT PAL_TRAIT_TEST_GOOGLE_TEST_SUPPORTED)
- return()
- endif()
- o3de_pal_dir(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME} ${O3DE_ENGINE_RESTRICTED_PATH} ${LY_ROOT_FOLDER})
- include(${pal_dir}/platform_traits_${PAL_PLATFORM_NAME_LOWERCASE}.cmake)
- # note that LY_DISABLE_TEST_MODULES is a CMake variable that controls whether
- # test modules are built or not and it should be interpreted as "build our own
- # tests"... not as "support no testing at all if set".
- # We still need to build and ship AzTestRunner as part of the engine and installer
- # so that people using the installer can run their OWN tests.
- if(PAL_TRAIT_AZTESTRUNNER_SUPPORTED)
- ly_add_target(
- NAME AzTestRunner ${PAL_TRAIT_AZTESTRUNNER_LAUNCHER_TYPE}
- NAMESPACE AZ
- FILES_CMAKE
- aztestrunner_files.cmake
- ${pal_dir}/platform_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake
- PLATFORM_INCLUDE_FILES
- ${pal_dir}/platform_${PAL_PLATFORM_NAME_LOWERCASE}.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- src
- BUILD_DEPENDENCIES
- PRIVATE
- AZ::AzCore
- AZ::AzTest
- )
-
- if(PAL_TRAIT_BUILD_TESTS_SUPPORTED)
-
- ly_add_target(
- NAME AzTestRunner.Tests ${PAL_TRAIT_TEST_TARGET_TYPE}
- NAMESPACE AZ
- FILES_CMAKE
- aztestrunner_test_files.cmake
- BUILD_DEPENDENCIES
- PRIVATE
- AZ::AzTest
- )
- ly_add_googletest(
- NAME AZ::AzTestRunner.Tests
- )
- endif()
- endif()
|