Skip to content

Commit 020ac4d

Browse files
committed
CMake: Use mbed_ prefix for CMake functions
1 parent e04fddc commit 020ac4d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ add_subdirectory(targets)
6161
#
6262
# Configures the application
6363
#
64-
function(mbed_os_configure_app_target target)
64+
function(mbed_configure_app_target target)
6565
mbed_set_language_standard(${target})
6666
endfunction()
6767

6868
#
6969
# Specifies linker script used for linking `target`.
7070
#
71-
function(mbed_os_target_linker_script target)
71+
function(mbed_set_mbed_target_linker_script target)
7272
get_property(mbed_target_startup GLOBAL PROPERTY MBED_TARGET_LINKER_FILE)
7373

7474
# TODO: @mbed-os-tools This pre-build commands should get details from target + profile.
@@ -110,7 +110,7 @@ endfunction()
110110
#
111111
# Converts output file of `target` to binary file and to Intel HEX file.
112112
#
113-
function(mbed_os_bin_hex target)
113+
function(mbed_generate_bin_hex target)
114114
get_property(elf_to_bin GLOBAL PROPERTY ELF2BIN)
115115
# TODO: @mbed-os-tools This post-build commands should get details from target + profile.
116116
if(MBED_TOOLCHAIN STREQUAL "GCC_ARM")

0 commit comments

Comments
 (0)