switch to git no-history version

This commit is contained in:
AndreaRigoni
2018-04-17 15:39:10 +02:00
commit b14311ce09
274 changed files with 27340 additions and 0 deletions

12
CMake/uLibMacros.cmake Normal file
View File

@@ -0,0 +1,12 @@
#if(ULIB_MACROS_CMAKE)
# return()
#endif()
#set(ULIB_MACROS_CMAKE 1)
function(include_guard var)
if(${var})
return()
endif()
set(${var} 1)
endfunction()