resp协议定义, xml定义配置文件

This commit is contained in:
1iaan
2026-01-19 10:37:32 +00:00
parent e404554363
commit bb2c4275cb
46 changed files with 9998 additions and 473 deletions

View File

@@ -0,0 +1,15 @@
aux_source_directory(. SRC)
# 编译不过的,先放这里
set(NOT_COMPILE )
foreach(FILE_PATH ${SRC})
string(REGEX REPLACE ".+/(.+)\\..*" "\\1" FILE_NAME ${FILE_PATH})
list(FIND NOT_COMPILE ${FILE_NAME} RESULT)
if(${RESULT} EQUAL -1)
message(${FILE_NAME})
add_executable(${FILE_NAME} ${FILE_PATH})
target_link_libraries(${FILE_NAME} nty_core ${LIBS})
endif()
endforeach()