Initial commit

This commit is contained in:
2025-12-19 20:08:22 +00:00
commit 2a30c0d77b
12 changed files with 444 additions and 0 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()