Skip to content

Commit 0fb9be3

Browse files
authored
Update location of Mbed OS cmake config file (#68)
Mbed OS tools now generates Mbed OS cmake config file in build folder instead of root folder (ARMmbed/mbed-tools#189). Update `CMakeLists.txt` to use build folder to locate Mbed OS cmake config file.
1 parent ec9b6b5 commit 0fb9be3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR)
55

66
set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/mbed-os CACHE INTERNAL "")
7-
set(MBED_CONFIG_PATH ${CMAKE_CURRENT_SOURCE_DIR}/.mbedbuild CACHE INTERNAL "")
7+
set(MBED_CONFIG_PATH ${CMAKE_CURRENT_BINARY_DIR} CACHE INTERNAL "")
88
set(APP_TARGET mbed-os-example-devicekey)
99

1010
include(${MBED_PATH}/tools/cmake/app.cmake)

0 commit comments

Comments
 (0)