2007-08-11 14:18:48 +00:00
|
|
|
# QMake pro-file for PokerTH common library
|
|
|
|
|
|
2010-10-30 17:27:56 +00:00
|
|
|
isEmpty( PREFIX ){
|
|
|
|
|
PREFIX =/usr
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-11 14:18:48 +00:00
|
|
|
TEMPLATE = lib
|
|
|
|
|
CODECFORSRC = UTF-8
|
|
|
|
|
|
2009-08-17 23:23:01 +00:00
|
|
|
CONFIG += staticlib thread exceptions rtti stl warn_on
|
2007-10-02 17:01:23 +00:00
|
|
|
UI_DIR = uics
|
|
|
|
|
TARGET = lib/pokerth_lib
|
2011-05-08 22:20:26 +00:00
|
|
|
QMAKE_CLEAN += ./lib/libpokerth_lib.a
|
2007-10-02 17:01:23 +00:00
|
|
|
MOC_DIR = mocs
|
|
|
|
|
OBJECTS_DIR = obj
|
2011-11-17 19:24:06 +00:00
|
|
|
DEFINES += ENABLE_IPV6 TIXML_USE_STL BOOST_FILESYSTEM_DEPRECATED
|
2007-10-02 17:01:23 +00:00
|
|
|
QT -= core gui
|
2009-05-07 22:36:51 +00:00
|
|
|
#PRECOMPILED_HEADER = src/pch_lib.h
|
2007-10-02 17:01:23 +00:00
|
|
|
|
2007-08-11 14:18:48 +00:00
|
|
|
INCLUDEPATH += . \
|
|
|
|
|
src \
|
|
|
|
|
src/engine \
|
|
|
|
|
src/gui \
|
|
|
|
|
src/gui/qt \
|
|
|
|
|
src/gui/qt/qttools \
|
|
|
|
|
src/net \
|
|
|
|
|
src/engine/local_engine \
|
|
|
|
|
src/engine/network_engine \
|
|
|
|
|
src/config \
|
2013-10-02 23:57:21 +02:00
|
|
|
src/core \
|
|
|
|
|
src/third_party/websocketpp
|
2007-08-11 14:18:48 +00:00
|
|
|
|
|
|
|
|
DEPENDPATH += . \
|
|
|
|
|
src \
|
|
|
|
|
src/config \
|
|
|
|
|
src/core \
|
|
|
|
|
src/engine \
|
|
|
|
|
src/gui \
|
|
|
|
|
src/gui/qt \
|
|
|
|
|
src/gui/generic \
|
|
|
|
|
src/net \
|
|
|
|
|
src/core/common \
|
|
|
|
|
src/engine/local_engine \
|
|
|
|
|
src/engine/network_engine \
|
2013-10-02 23:57:21 +02:00
|
|
|
src/net/common
|
2007-08-11 14:18:48 +00:00
|
|
|
|
|
|
|
|
# Input
|
|
|
|
|
HEADERS += \
|
2011-07-02 15:00:47 +00:00
|
|
|
src/engine/game.h \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/session.h \
|
|
|
|
|
src/playerdata.h \
|
|
|
|
|
src/gamedata.h \
|
|
|
|
|
src/config/configfile.h \
|
|
|
|
|
src/core/thread.h \
|
2007-09-08 13:38:06 +00:00
|
|
|
src/core/crypthelper.h \
|
2007-09-08 16:26:10 +00:00
|
|
|
src/core/avatarmanager.h \
|
2007-09-29 00:08:19 +00:00
|
|
|
src/core/pokerthexception.h \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/engine/boardinterface.h \
|
|
|
|
|
src/engine/enginefactory.h \
|
|
|
|
|
src/engine/handinterface.h \
|
|
|
|
|
src/engine/playerinterface.h \
|
|
|
|
|
src/engine/berointerface.h \
|
|
|
|
|
src/gui/guiinterface.h \
|
2009-08-14 18:56:45 +00:00
|
|
|
src/net/chatcleanermanager.h \
|
2009-08-17 09:45:06 +00:00
|
|
|
src/net/chatcleanercallback.h \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/net/clientcallback.h \
|
|
|
|
|
src/net/clientcontext.h \
|
|
|
|
|
src/net/clientexception.h \
|
2009-05-10 22:34:07 +00:00
|
|
|
src/net/netcontext.h \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/net/clientstate.h \
|
|
|
|
|
src/net/clientthread.h \
|
|
|
|
|
src/net/genericsocket.h \
|
|
|
|
|
src/net/netpacket.h \
|
2012-12-31 16:31:26 +01:00
|
|
|
src/net/netpacketvalidator.h \
|
2009-05-10 22:21:20 +00:00
|
|
|
src/net/senderhelper.h \
|
2009-05-10 22:34:07 +00:00
|
|
|
src/net/sendercallback.h \
|
|
|
|
|
src/net/serverexception.h \
|
2013-09-15 22:54:45 +02:00
|
|
|
src/net/serveracceptinterface.h \
|
2009-05-10 22:21:20 +00:00
|
|
|
src/net/serveraccepthelper.h \
|
2013-09-15 22:54:45 +02:00
|
|
|
src/net/serveracceptwebhelper.h \
|
2009-05-31 19:45:20 +00:00
|
|
|
src/net/servergame.h \
|
2007-08-20 20:37:54 +00:00
|
|
|
src/net/servergamestate.h \
|
2007-08-19 20:58:57 +00:00
|
|
|
src/net/serverlobbythread.h \
|
2009-06-18 20:16:22 +00:00
|
|
|
src/net/serverbanmanager.h \
|
2009-05-10 22:34:07 +00:00
|
|
|
src/net/servercallback.h \
|
2009-08-20 15:19:41 +00:00
|
|
|
src/net/serveradminbot.h \
|
|
|
|
|
src/net/serverlobbybot.h \
|
2009-08-20 11:42:13 +00:00
|
|
|
src/net/serverircbotcallback.h \
|
2009-05-10 22:34:07 +00:00
|
|
|
src/net/sessiondata.h \
|
2009-01-11 20:12:26 +00:00
|
|
|
src/net/sessiondatacallback.h \
|
2009-05-10 22:34:07 +00:00
|
|
|
src/net/sessionmanager.h \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/net/socket_helper.h \
|
|
|
|
|
src/net/socket_msg.h \
|
|
|
|
|
src/net/socket_startup.h \
|
2007-09-26 11:48:33 +00:00
|
|
|
src/net/irccallback.h \
|
|
|
|
|
src/net/ircthread.h \
|
2007-09-29 00:08:19 +00:00
|
|
|
src/net/netexception.h \
|
2007-11-16 22:34:38 +00:00
|
|
|
src/net/servermanager.h \
|
2009-02-21 23:33:30 +00:00
|
|
|
src/net/transferdata.h \
|
|
|
|
|
src/net/transferhelper.h \
|
|
|
|
|
src/net/uploaderthread.h \
|
|
|
|
|
src/net/uploadhelper.h \
|
2009-03-21 01:39:00 +00:00
|
|
|
src/net/downloaderthread.h \
|
|
|
|
|
src/net/downloadhelper.h \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/engine/local_engine/cardsvalue.h \
|
|
|
|
|
src/engine/local_engine/localboard.h \
|
|
|
|
|
src/engine/local_engine/localenginefactory.h \
|
|
|
|
|
src/engine/local_engine/localhand.h \
|
|
|
|
|
src/engine/local_engine/localplayer.h \
|
|
|
|
|
src/engine/local_engine/localberopreflop.h \
|
|
|
|
|
src/engine/local_engine/localberoflop.h \
|
|
|
|
|
src/engine/local_engine/localberoturn.h \
|
|
|
|
|
src/engine/local_engine/localberoriver.h \
|
|
|
|
|
src/engine/local_engine/localberopostriver.h \
|
|
|
|
|
src/engine/local_engine/tools.h \
|
|
|
|
|
src/engine/local_engine/localbero.h \
|
2007-09-29 00:08:19 +00:00
|
|
|
src/engine/local_engine/localexception.h \
|
2011-02-08 16:42:56 +00:00
|
|
|
src/engine/local_engine/arraydata.h \
|
|
|
|
|
src/engine/log.h \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/engine/network_engine/clientboard.h \
|
|
|
|
|
src/engine/network_engine/clientenginefactory.h \
|
|
|
|
|
src/engine/network_engine/clienthand.h \
|
|
|
|
|
src/engine/network_engine/clientplayer.h \
|
|
|
|
|
src/engine/network_engine/clientbero.h \
|
2009-09-04 22:53:24 +00:00
|
|
|
src/db/serverdbcallback.h \
|
|
|
|
|
src/db/serverdbfactory.h \
|
|
|
|
|
src/db/serverdbinterface.h \
|
|
|
|
|
src/db/serverdbgeneric.h \
|
|
|
|
|
src/db/serverdbfactorygeneric.h \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/gui/qttoolsinterface.h \
|
2011-02-08 16:42:56 +00:00
|
|
|
src/gui/generic/serverguiwrapper.h \
|
2011-02-19 18:18:00 +00:00
|
|
|
src/net/receivebuffer.h \
|
2013-09-15 22:54:45 +02:00
|
|
|
src/net/asioreceivebuffer.h \
|
|
|
|
|
src/net/webreceivebuffer.h \
|
2012-12-25 15:33:01 +01:00
|
|
|
src/net/sendbuffer.h \
|
2013-09-15 22:54:45 +02:00
|
|
|
src/net/asiosendbuffer.h \
|
|
|
|
|
src/net/websendbuffer.h \
|
2012-12-25 15:33:01 +01:00
|
|
|
src/net/servermanagerfactory.h \
|
2013-09-15 22:54:45 +02:00
|
|
|
src/net/uploadcallback.h \
|
|
|
|
|
src/net/websocket_defs.h \
|
|
|
|
|
src/net/websocketdata.h
|
2007-08-11 14:18:48 +00:00
|
|
|
|
|
|
|
|
SOURCES += \
|
2011-07-02 15:00:47 +00:00
|
|
|
src/engine/game.cpp \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/session.cpp \
|
|
|
|
|
src/playerdata.cpp \
|
|
|
|
|
src/config/configfile.cpp \
|
|
|
|
|
src/engine/boardinterface.cpp \
|
|
|
|
|
src/engine/enginefactory.cpp \
|
|
|
|
|
src/engine/handinterface.cpp \
|
|
|
|
|
src/engine/playerinterface.cpp \
|
|
|
|
|
src/engine/berointerface.cpp \
|
|
|
|
|
src/gui/guiinterface.cpp \
|
|
|
|
|
src/core/common/thread.cpp \
|
2007-09-08 13:38:06 +00:00
|
|
|
src/core/common/crypthelper.cpp \
|
2007-09-08 18:01:38 +00:00
|
|
|
src/core/common/avatarmanager.cpp \
|
2007-09-29 00:08:19 +00:00
|
|
|
src/core/common/pokerthexception.cpp \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/engine/local_engine/cardsvalue.cpp \
|
|
|
|
|
src/engine/local_engine/localboard.cpp \
|
|
|
|
|
src/engine/local_engine/localenginefactory.cpp \
|
|
|
|
|
src/engine/local_engine/localhand.cpp \
|
|
|
|
|
src/engine/local_engine/localplayer.cpp \
|
|
|
|
|
src/engine/local_engine/localberopreflop.cpp \
|
|
|
|
|
src/engine/local_engine/localberoflop.cpp \
|
|
|
|
|
src/engine/local_engine/localberoturn.cpp \
|
|
|
|
|
src/engine/local_engine/localberoriver.cpp \
|
|
|
|
|
src/engine/local_engine/localberopostriver.cpp \
|
|
|
|
|
src/engine/local_engine/localbero.cpp \
|
2007-09-29 00:08:19 +00:00
|
|
|
src/engine/local_engine/localexception.cpp \
|
2008-10-17 09:49:36 +00:00
|
|
|
src/engine/local_engine/arraydata.cpp \
|
2012-12-25 15:33:01 +01:00
|
|
|
src/engine/log.cpp \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/engine/network_engine/clientboard.cpp \
|
|
|
|
|
src/engine/network_engine/clientenginefactory.cpp \
|
|
|
|
|
src/engine/network_engine/clienthand.cpp \
|
|
|
|
|
src/engine/network_engine/clientplayer.cpp \
|
|
|
|
|
src/engine/network_engine/clientbero.cpp \
|
2009-08-14 18:56:45 +00:00
|
|
|
src/net/common/chatcleanermanager.cpp \
|
2009-08-17 09:45:06 +00:00
|
|
|
src/net/common/chatcleanercallback.cpp \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/net/common/clientcallback.cpp \
|
|
|
|
|
src/net/common/clientcontext.cpp \
|
|
|
|
|
src/net/common/clientstate.cpp \
|
|
|
|
|
src/net/common/clientthread.cpp \
|
2008-04-19 11:48:09 +00:00
|
|
|
src/net/common/downloadhelper.cpp \
|
2009-03-21 01:39:00 +00:00
|
|
|
src/net/common/downloaderthread.cpp \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/net/common/netpacket.cpp \
|
2012-12-31 16:31:26 +01:00
|
|
|
src/net/common/netpacketvalidator.cpp \
|
2009-05-10 22:21:20 +00:00
|
|
|
src/net/common/senderhelper.cpp \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/net/common/sendercallback.cpp \
|
|
|
|
|
src/net/common/serverexception.cpp \
|
2013-09-15 23:27:27 +02:00
|
|
|
src/net/common/serveracceptinterface.cpp \
|
2013-09-15 22:54:45 +02:00
|
|
|
src/net/common/serveracceptwebhelper.cpp \
|
2009-05-31 19:45:20 +00:00
|
|
|
src/net/common/servergame.cpp \
|
2007-08-20 20:37:54 +00:00
|
|
|
src/net/common/servergamestate.cpp \
|
2007-08-19 20:58:57 +00:00
|
|
|
src/net/common/serverlobbythread.cpp \
|
2009-06-18 20:16:22 +00:00
|
|
|
src/net/common/serverbanmanager.cpp \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/net/common/servercallback.cpp \
|
2009-08-20 15:19:41 +00:00
|
|
|
src/net/common/serveradminbot.cpp \
|
|
|
|
|
src/net/common/serverlobbybot.cpp \
|
2009-08-20 11:42:13 +00:00
|
|
|
src/net/common/serverircbotcallback.cpp \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/net/common/sessiondata.cpp \
|
2009-01-11 20:12:26 +00:00
|
|
|
src/net/common/sessiondatacallback.cpp \
|
2007-08-19 20:58:57 +00:00
|
|
|
src/net/common/sessionmanager.cpp \
|
2009-06-16 22:13:12 +00:00
|
|
|
src/net/common/socket_startup.cpp \
|
2007-08-11 14:18:48 +00:00
|
|
|
src/net/common/clientexception.cpp \
|
|
|
|
|
src/net/common/netcontext.cpp \
|
|
|
|
|
src/net/common/netexception.cpp \
|
2007-09-26 11:48:33 +00:00
|
|
|
src/net/common/irccallback.cpp \
|
2007-11-16 22:34:38 +00:00
|
|
|
src/net/common/servermanager.cpp \
|
2009-02-21 23:33:30 +00:00
|
|
|
src/net/common/transferhelper.cpp \
|
|
|
|
|
src/net/common/uploaderthread.cpp \
|
|
|
|
|
src/net/common/uploadhelper.cpp \
|
2007-10-01 00:33:05 +00:00
|
|
|
src/gui/generic/serverguiwrapper.cpp \
|
2011-02-18 19:22:44 +00:00
|
|
|
src/gui/qttoolsinterface.cpp \
|
2012-04-22 09:24:27 +00:00
|
|
|
src/net/common/sendbuffer.cpp \
|
2013-09-15 22:54:45 +02:00
|
|
|
src/net/common/asiosendbuffer.cpp \
|
|
|
|
|
src/net/common/websendbuffer.cpp \
|
2012-12-20 14:29:43 -08:00
|
|
|
src/net/common/receivebuffer.cpp \
|
2013-09-15 22:54:45 +02:00
|
|
|
src/net/common/asioreceivebuffer.cpp \
|
|
|
|
|
src/net/common/webreceivebuffer.cpp \
|
2012-12-25 15:33:01 +01:00
|
|
|
src/net/common/uploadcallback.cpp
|
2007-08-11 14:18:48 +00:00
|
|
|
|
2012-09-06 21:21:07 +02:00
|
|
|
!android:!android_test{
|
2012-04-22 12:01:43 +00:00
|
|
|
SOURCES += src/engine/local_engine/tools.cpp
|
|
|
|
|
}
|
2012-09-06 21:21:07 +02:00
|
|
|
android|android_test{
|
2012-04-22 12:01:43 +00:00
|
|
|
SOURCES += src/engine/local_engine/tools_android.cpp
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-25 22:02:46 +02:00
|
|
|
official_server:!win32:!gui_800x480:!client:{
|
|
|
|
|
# INCLUDEPATH += pkth_stat/daemon_lib/src # note: relict from former official/closed db build
|
2009-09-26 20:05:46 +00:00
|
|
|
DEFINES += POKERTH_OFFICIAL_SERVER
|
2016-10-25 22:02:46 +02:00
|
|
|
HEADERS += src/dbofficial/asyncdbauth.h \
|
|
|
|
|
src/dbofficial/asyncdbcreategame.h \
|
|
|
|
|
src/dbofficial/asyncdbgameplace.h \
|
|
|
|
|
src/dbofficial/asyncdbupdatescore.h \
|
|
|
|
|
src/dbofficial/asyncdbquery.h \
|
|
|
|
|
src/dbofficial/serverdbthread.h \
|
|
|
|
|
src/dbofficial/serverdbfactoryinternal.h \
|
|
|
|
|
src/dbofficial/compositeasyncdbquery.h \
|
|
|
|
|
src/dbofficial/singleasyncdbquery.h \
|
|
|
|
|
src/dbofficial/querycontext.h \
|
|
|
|
|
src/dbofficial/asyncdbendgame.h \
|
|
|
|
|
src/dbofficial/db_table_defs.h \
|
|
|
|
|
src/dbofficial/asyncdblogin.h \
|
|
|
|
|
src/dbofficial/asyncdbreportavatar.h \
|
|
|
|
|
src/dbofficial/asyncdbreportgame.h \
|
|
|
|
|
src/dbofficial/asyncdbavatarblacklist.h \
|
|
|
|
|
src/dbofficial/asyncdbadminplayers.h \
|
|
|
|
|
src/dbofficial/asyncdbblockplayer.h \
|
|
|
|
|
src/dbofficial/dbidmanager.h
|
|
|
|
|
SOURCES += src/dbofficial/asyncdbauth.cpp \
|
|
|
|
|
src/dbofficial/asyncdbcreategame.cpp \
|
|
|
|
|
src/dbofficial/asyncdbgameplace.cpp \
|
|
|
|
|
src/dbofficial/asyncdbupdatescore.cpp \
|
|
|
|
|
src/dbofficial/asyncdbquery.cpp \
|
|
|
|
|
src/dbofficial/serverdbthread.cpp \
|
|
|
|
|
src/dbofficial/serverdbfactoryinternal.cpp \
|
|
|
|
|
src/dbofficial/singleasyncdbquery.cpp \
|
|
|
|
|
src/dbofficial/compositeasyncdbquery.cpp \
|
|
|
|
|
src/dbofficial/querycontext.cpp \
|
|
|
|
|
src/dbofficial/asyncdbendgame.cpp \
|
|
|
|
|
src/dbofficial/asyncdblogin.cpp \
|
|
|
|
|
src/dbofficial/asyncdbreportavatar.cpp \
|
|
|
|
|
src/dbofficial/asyncdbreportgame.cpp \
|
|
|
|
|
src/dbofficial/asyncdbavatarblacklist.cpp \
|
|
|
|
|
src/dbofficial/asyncdbadminplayers.cpp \
|
|
|
|
|
src/dbofficial/asyncdbblockplayer.cpp \
|
|
|
|
|
src/dbofficial/dbidmanager.cpp
|
|
|
|
|
INCLUDEPATH += /usr/include \
|
|
|
|
|
/usr/include/mysql \
|
|
|
|
|
/usr/include/mysql++
|
2009-09-26 20:05:46 +00:00
|
|
|
}
|
|
|
|
|
|
2007-08-11 14:18:48 +00:00
|
|
|
win32{
|
2008-04-11 08:32:48 +00:00
|
|
|
DEFINES += CURL_STATICLIB
|
2010-10-30 17:27:56 +00:00
|
|
|
DEFINES += _WIN32_WINNT=0x0501
|
2012-12-25 15:33:01 +01:00
|
|
|
DEFINES += HAVE_OPENSSL
|
2007-08-11 14:18:48 +00:00
|
|
|
DEPENDPATH += src/net/win32/ src/core/win32
|
2010-12-20 18:27:48 +00:00
|
|
|
win32-g++ {
|
|
|
|
|
INCLUDEPATH += ../boost/ ../GnuTLS/include ../gsasl/include ../curl/include ../zlib ../sqlite ../openssl/include
|
|
|
|
|
}
|
2007-08-11 14:18:48 +00:00
|
|
|
}
|
|
|
|
|
!win32{
|
2008-05-21 20:47:17 +00:00
|
|
|
##### My release static build options
|
|
|
|
|
#QMAKE_CXXFLAGS += -ffunction-sections -fdata-sections
|
2010-11-01 09:46:56 +00:00
|
|
|
INCLUDEPATH += $${PREFIX}/include /opt/gsasl/include
|
2007-08-11 14:18:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mac{
|
2012-04-22 12:01:43 +00:00
|
|
|
# make it x86_64 only
|
|
|
|
|
CONFIG += x86_64
|
|
|
|
|
CONFIG -= x86
|
|
|
|
|
CONFIG -= ppc
|
|
|
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6
|
|
|
|
|
QMAKE_CXXFLAGS -= -std=gnu++0x
|
2007-08-11 14:18:48 +00:00
|
|
|
|
|
|
|
|
# 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/
|
|
|
|
|
|
2012-04-22 09:24:27 +00:00
|
|
|
INCLUDEPATH += /Developer/SDKs/MacOSX10.6.sdk/usr/include/
|
2007-08-11 14:18:48 +00:00
|
|
|
INCLUDEPATH += /Library/Frameworks/SDL.framework/Headers
|
2007-11-24 14:04:18 +00:00
|
|
|
INCLUDEPATH += /Library/Frameworks/SDL_mixer.framework/Headers
|
2013-08-31 00:42:03 +02:00
|
|
|
INCLUDEPATH += /usr/local/include
|
2007-08-11 14:18:48 +00:00
|
|
|
}
|
2012-04-22 09:24:27 +00:00
|
|
|
|
2012-04-22 10:18:27 +00:00
|
|
|
android{
|
|
|
|
|
# Use old boost::filesystem, because the new version requires std::wstring.
|
2013-08-28 10:49:03 +02:00
|
|
|
DEFINES += BOOST_FILESYSTEM_VERSION=3
|
2012-04-22 10:18:27 +00:00
|
|
|
# sqlite3 is included directly.
|
|
|
|
|
INCLUDEPATH += src/third_party/sqlite3
|
|
|
|
|
SOURCES += src/third_party/sqlite3/sqlite3.c
|
|
|
|
|
}
|
2012-09-06 21:01:27 +02:00
|
|
|
|
|
|
|
|
android_test{
|
|
|
|
|
DEFINES += ANDROID
|
|
|
|
|
}
|