# Copyright (C) 2024 - 2025 Advanced Micro Devices, Inc.  All rights reserved.
# SPDX-License-Identifier: MIT
cmake_minimum_required(VERSION 3.15)
include(${CMAKE_CURRENT_SOURCE_DIR}/XilpufExample.cmake)
project(xilpuf)

find_package(common)
enable_language(C ASM)
collect(PROJECT_LIB_DEPS xilstandalone)
collect(PROJECT_LIB_DEPS xil)
collect(PROJECT_LIB_DEPS xiltimer)
collect(PROJECT_LIB_DEPS xilsecure)
collect(PROJECT_LIB_DEPS xilnvm)
collect(PROJECT_LIB_DEPS xilpuf)
if (NOT("${CMAKE_MACHINE}" STREQUAL "spartanuplus"))
    collect(PROJECT_LIB_DEPS xilmailbox)
endif()
collect(PROJECT_LIB_DEPS gcc)
collect(PROJECT_LIB_DEPS c)
collector_list (_deps PROJECT_LIB_DEPS)

if (NOT("${CMAKE_MACHINE}" STREQUAL "spartanuplus"))
    if("${XILPUF_Mode}" STREQUAL "server")
        SET(COMMON_EXAMPLES xilpuf_enc_dec_data_example.c;xilpuf_example.c;)
    else()
        SET(COMMON_EXAMPLES xilpuf_client_example.c;xilpuf_enc_dec_data_client_example.c;xilpuf_ssit_client_example.c;)
    endif()
else()
    SET(COMMON_EXAMPLES xilpuf_spartan_ultrascale_plus_example.c;)
endif()

linker_gen("${CMAKE_CURRENT_SOURCE_DIR}/../../../../scripts/linker_files/")
foreach(EXAMPLE ${COMMON_EXAMPLES})
    string(REGEX REPLACE "\\.[^.]*$" "" EXAMPLE ${EXAMPLE})
    add_executable(${EXAMPLE}.elf ${EXAMPLE})
    target_link_libraries(${EXAMPLE}.elf -Wl,--gc-sections -T\"${CMAKE_SOURCE_DIR}/lscript.ld\" -L\"${CMAKE_SOURCE_DIR}/\" -Wl,--start-group ${_deps} -Wl,--end-group)
endforeach()
