OBLFR/cmake/sdk.cmake
Justin Hammond e36316fa13
Few fixes and Port IRQ_Forward to a component (#8)
* Remove a unnecessary delay in the nvkvs
* update readme
* port IRQ_Forward Code to a component and update d0_lowload to use it
* add USB, Ethernet and GPIO for IRQ Forwarding
2023-02-03 14:26:58 +08:00

6 lines
No EOL
183 B
CMake

cmake_minimum_required(VERSION 3.15)
function(sdk_add_include_directories_ifndef feature)
if(NOT DEFINED ${feature})
sdk_add_include_directories(${ARGN})
endif()
endfunction()