增加ACE安全测试工程

This commit is contained in:
2025-12-06 16:42:21 +08:00
parent b78ee53326
commit b38ad590a9
68 changed files with 5385 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
add_library(aGameProto
GameProto.proto
GameProto.h
GameProto.cpp
)
protobuf_generate(
LANGUAGE cpp
TARGET aGameProto
PROTOS GameProto.proto
)
target_include_directories(aGameProto
PUBLIC
${CMAKE_CURRENT_BINARY_DIR}
PRIVATE
${CYCLONE_DIR}/include
)
target_link_libraries(aGameProto
PUBLIC
protobuf::libprotobuf
)