mirror of
https://github.com/Fishwaldo/OBLFR.git
synced 2025-03-16 03:41:44 +00:00
6 lines
183 B
CMake
6 lines
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()
|