From 878b760321936e04a468ff8a484edd6d55a87e5f Mon Sep 17 00:00:00 2001 From: Matt Lowe Date: Fri, 1 May 2015 22:32:31 +0200 Subject: [PATCH] Removed lprotobuf error on building Will need @ctrlaltca to confirm this wont mess anything up. I have removed a option to se set from the cmake file. This option is not needed. Windows users, you will need to run cmake to create the sln again. --- common/pb/CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/common/pb/CMakeLists.txt b/common/pb/CMakeLists.txt index 7b005157..adf1e1b8 100644 --- a/common/pb/CMakeLists.txt +++ b/common/pb/CMakeLists.txt @@ -154,9 +154,6 @@ PROTOBUF_GENERATE_CPP(PROTO_SRCS PROTO_HDRS ${PROTO_FILES}) add_library(cockatrice_protocol ${PROTO_SRCS} ${PROTO_HDRS}) set(cockatrice_protocol_LIBS ${PROTOBUF_LIBRARIES}) -if (MSVC) - set(cockatrice_protocol_LIBS ${cockatrice_protocol_LIBS} -lprotobuf) -endif (MSVC) if (UNIX) set(cockatrice_protocol_LIBS ${cockatrice_protocol_LIBS} -lpthread) endif (UNIX)