ulp: Updated ULP CMakeLists.txt to output binary with .elf extension

This commit updates the ULP CMakeLists.txt to output the ULP binary with
a .elf extension. Currently the output file does not use any extension.
pull/10828/head
Sudeep Mohanty 2023-02-17 10:22:34 +01:00
rodzic 496843b277
commit 8f93e4d0d5
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.16)
include(${IDF_PATH}/tools/cmake/idf.cmake)
project(${ULP_APP_NAME} ASM C)
add_executable(${ULP_APP_NAME})
set(CMAKE_EXECUTABLE_SUFFIX ".elf")
option(ULP_COCPU_IS_RISCV "Use RISC-V based ULP" OFF)