This commit is contained in:
aozhiwei 2021-09-18 11:10:42 +08:00
parent 0535045139
commit c1e6dba2f7

View File

@ -89,41 +89,36 @@ add_custom_command(TARGET script_pb_protocol
) )
add_dependencies(gameserver${GAME_ID} script_pb_protocol) add_dependencies(gameserver${GAME_ID} script_pb_protocol)
target_link_libraries(
gameserver${GAME_ID}
pthread
mysqlclient
protobuf
rt
dl
util
crypto
ssl
jsoncpp
curl
hiredis
tinyxml2
)
if (CMAKE_BUILD_TYPE STREQUAL "Debug") if (CMAKE_BUILD_TYPE STREQUAL "Debug")
target_link_libraries( target_link_libraries(
gameserver${GAME_ID} gameserver${GAME_ID}
pthread
mysqlclient
protobuf
rt
dl
util
crypto
ssl
jsoncpp
curl
hiredis
tinyxml2
#tcmalloc
backtrace
behaviac_gcc_debug behaviac_gcc_debug
) )
else() else()
target_link_libraries( target_link_libraries(
gameserver${GAME_ID} gameserver${GAME_ID}
pthread
mysqlclient
protobuf
rt
dl
util
crypto
ssl
jsoncpp
curl
hiredis
tinyxml2
tcmalloc tcmalloc
behaviac_gcc_release behaviac_gcc_release
) )
endif() endif()
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "5.0.0")
target_link_libraries(
gameserver${GAME_ID}
backtrace)
endif()