From 43b694e4f8aa13a99e9cbdf57ae4fafeac604383 Mon Sep 17 00:00:00 2001 From: doitux Date: Sun, 2 Aug 2009 19:24:34 +0000 Subject: [PATCH] linux linking libpokerth_protocol fix --- pokerth_game.pro | 6 ++++-- pokerth_server.pro | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/pokerth_game.pro b/pokerth_game.pro index e3cffebf..d2e3f3d8 100644 --- a/pokerth_game.pro +++ b/pokerth_game.pro @@ -400,14 +400,16 @@ unix:!mac { UNAME = $$system(uname -s) BSD = $$find(UNAME, "BSD") kFreeBSD = $$find(UNAME, "kFreeBSD") - LIBS += -lpokerth_lib + LIBS += -lpokerth_lib \ + -lpokerth_protocol LIBS += $$BOOST_LIBS LIBS += -lSDL_mixer \ -lcurl !isEmpty( BSD ) && isEmpty( kFreeBSD ):LIBS += -lcrypto else:LIBS += -lgnutls-openssl \ -lgcrypt - TARGETDEPS += ./lib/libpokerth_lib.a + TARGETDEPS += ./lib/libpokerth_lib.a \ + ./lib/libpokerth_protocol.a # #### My release static libs # LIBS += -lgcrypt_static -lgpg-error_static -lgnutls-openssl_static -lgnutls_static -lSDL_mixer_static -lSDL -lmikmod -lcurl diff --git a/pokerth_server.pro b/pokerth_server.pro index e419fad5..9d80af13 100644 --- a/pokerth_server.pro +++ b/pokerth_server.pro @@ -240,7 +240,8 @@ unix : !mac { BSD = $$find(UNAME, "BSD") kFreeBSD = $$find(UNAME, "kFreeBSD") - LIBS += -lpokerth_lib + LIBS += -lpokerth_lib \ + -lpokerth_protocol LIBS += $$BOOST_LIBS LIBS += -lcurl !isEmpty( BSD ) && isEmpty( kFreeBSD ){ @@ -249,7 +250,8 @@ unix : !mac { LIBS += -lgnutls-openssl -lgcrypt } - TARGETDEPS += ./lib/libpokerth_lib.a + TARGETDEPS += ./lib/libpokerth_lib.a \ + ./lib/libpokerth_protocol.a #### INSTALL ####