mirror of https://github.com/ARMmbed/mbed-os.git
17 lines
380 B
CMake
17 lines
380 B
CMake
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
### No-op upload method.
|
|
# This method needs no parameters.
|
|
|
|
set(UPLOAD_NONE_FOUND TRUE) # this has no dependencies
|
|
set(UPLOAD_SUPPORTS_DEBUG FALSE)
|
|
|
|
### Function to generate upload target
|
|
|
|
function(gen_upload_target TARGET_NAME BIN_FILE)
|
|
|
|
# do nothing
|
|
|
|
endfunction(gen_upload_target)
|