First commit

This commit is contained in:
2025-12-23 21:24:06 +00:00
parent 2a30c0d77b
commit f5dc0ccbc9
52 changed files with 1663 additions and 208 deletions
+10
View File
@@ -0,0 +1,10 @@
set(TARGET_NAME ${PROJECT_NAME}_LIBS)
message(STATUS "Configuring ${TARGET_NAME} third party libraries")
set(LIBS_LIST "")
SubDirList(${CMAKE_CURRENT_LIST_DIR} LIBS_LIST)
foreach(LIB_DIR IN LISTS LIB_LIST)
message(STATUS "Adding library: ${LIB_DIR}")
add_subdirectory(${LIB_DIR})
endforeach()