mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #14876 from rwalton-arm/mbed_path_greentea
CMake: greentea: Remove dependency on global MBED_PATHpull/14874/head
commit
80ce06fb67
|
@ -1,9 +1,9 @@
|
|||
# Copyright (c) 2020-2021 ARM Limited. All rights reserved.
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
set(MBED_CONFIG_PATH ${CMAKE_CURRENT_BINARY_DIR} CACHE INTERNAL "")
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/app.cmake)
|
||||
set(MBED_ROOT ${CMAKE_CURRENT_LIST_DIR}/../.. CACHE INTERNAL "")
|
||||
|
||||
# CMake Macro for generalizing CMake configuration across the greentea test suite with configurable parameters
|
||||
# Macro args:
|
||||
|
@ -34,16 +34,13 @@ macro(mbed_greentea_add_test)
|
|||
"${multipleValueArgs}"
|
||||
${ARGN}
|
||||
)
|
||||
|
||||
add_subdirectory(${MBED_PATH} build)
|
||||
add_subdirectory(${MBED_ROOT} build)
|
||||
|
||||
add_executable(${MBED_GREENTEA_TEST_NAME})
|
||||
|
||||
# Explicitly enable BUILD_TESTING until CTest is added to the Greentea client
|
||||
set(BUILD_TESTING ON)
|
||||
|
||||
mbed_configure_app_target(${MBED_GREENTEA_TEST_NAME})
|
||||
|
||||
target_include_directories(${MBED_GREENTEA_TEST_NAME}
|
||||
PRIVATE
|
||||
.
|
||||
|
|
Loading…
Reference in New Issue