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.
This commit is contained in:
Sudeep Mohanty
2023-02-17 10:22:34 +01:00
parent 496843b277
commit 8f93e4d0d5

View File

@@ -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)