Files
pokerth/pokerth_protocol.pro
T

56 lines
1.4 KiB
Prolog
Raw Normal View History

# QMake pro-file for PokerTH common library
TEMPLATE = lib
CODECFORSRC = UTF-8
CONFIG += staticlib \
thread \
exceptions \
rtti \
stl \
warn_on
UI_DIR = uics
TARGET = lib/pokerth_protocol
QMAKE_CLEAN += ./lib/libpokerth_protocol.a
MOC_DIR = mocs
OBJECTS_DIR = obj
DEFINES += ENABLE_IPV6
QT -= core \
gui
# PRECOMPILED_HEADER = src/pch_lib.h
INCLUDEPATH += . \
src
DEPENDPATH += . \
src
# Input
HEADERS += src/third_party/protobuf/pokerth.pb.h \
src/third_party/protobuf/chatcleaner.pb.h
SOURCES += src/third_party/protobuf/pokerth.pb.cc \
src/third_party/protobuf/chatcleaner.pb.cc
win32 {
DEFINES += CURL_STATICLIB
DEFINES += _WIN32_WINNT=0x0501
}
2012-10-26 18:39:41 +02:00
unix : !mac {
2012-11-05 14:15:55 +01:00
INCLUDEPATH += $${PREFIX}/include
2012-10-26 18:44:16 +02:00
system(protoc pokerth.proto --cpp_out=src/third_party/protobuf)
system(protoc chatcleaner.proto --cpp_out=src/third_party/protobuf)
2012-10-26 18:44:16 +02:00
system(protoc pokerth.proto --java_out=tests/src)
2012-10-26 18:39:41 +02:00
}
mac {
2011-10-21 10:24:25 +00:00
# make it x86_64 only
CONFIG += x86_64
CONFIG -= x86
CONFIG -= ppc
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6
# for universal-compilation on PPC-Mac uncomment the following line
# on Intel-Mac you have to comment this line out or build will fail.
# QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.4u.sdk/
2013-08-31 00:42:03 +02:00
INCLUDEPATH += /Developer/SDKs/MacOSX10.6.sdk/usr/include/
INCLUDEPATH += /Library/Frameworks/SDL.framework/Headers
INCLUDEPATH += /Library/Frameworks/SDL_mixer.framework/Headers
2013-08-31 00:42:03 +02:00
INCLUDEPATH += /usr/local/include
}