From d58896c69ae463191f027c57305f453698a3e5c8 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Sun, 14 May 2023 08:52:35 +0800 Subject: [PATCH] 1 --- server/robotserver/CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/server/robotserver/CMakeLists.txt b/server/robotserver/CMakeLists.txt index cf3815f6..0daa2e28 100644 --- a/server/robotserver/CMakeLists.txt +++ b/server/robotserver/CMakeLists.txt @@ -1,4 +1,4 @@ -project(gameserver) +project(robot) cmake_minimum_required(VERSION 2.8) set(GAME_ID 2006) @@ -102,7 +102,7 @@ set(EXECUTABLE_OUTPUT_PATH ) add_executable( - gameserver${GAME_ID} ${SRC_LIST} + robot${GAME_ID} ${SRC_LIST} ) add_custom_target(script_pb_protocol ALL) @@ -110,10 +110,10 @@ add_custom_command(TARGET script_pb_protocol PRE_BUILD COMMAND python ../../third_party/tools/scripts/construct/build_pb.py --cpp_out=. --pb_files=cs_proto,cs_msgid,ss_proto,ss_msgid,navmesh --python_out=../tools/robot/virtualclient ) -add_dependencies(gameserver${GAME_ID} script_pb_protocol) +add_dependencies(robot${GAME_ID} script_pb_protocol) target_link_libraries( - gameserver${GAME_ID} + robot${GAME_ID} pthread mysqlclient protobuf @@ -131,12 +131,12 @@ target_link_libraries( if (CMAKE_BUILD_TYPE STREQUAL "Debug") target_link_libraries( - gameserver${GAME_ID} + robot${GAME_ID} behaviac_gcc_debug ) else() target_link_libraries( - gameserver${GAME_ID} + robot${GAME_ID} tcmalloc behaviac_gcc_release )