mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-24 01:46:36 +02:00
edited i2pd_qt.pro
This commit is contained in:
parent
ebf7be56bb
commit
09b15f4940
1 changed files with 83 additions and 169 deletions
|
@ -1,10 +1,4 @@
|
||||||
#-------------------------------------------------
|
QT += core gui
|
||||||
#
|
|
||||||
# Project created by QtCreator 2016-06-14T04:53:04
|
|
||||||
#
|
|
||||||
#-------------------------------------------------
|
|
||||||
|
|
||||||
QT += core gui
|
|
||||||
|
|
||||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||||
|
|
||||||
|
@ -13,202 +7,122 @@ TEMPLATE = app
|
||||||
QMAKE_CXXFLAGS *= -std=c++11
|
QMAKE_CXXFLAGS *= -std=c++11
|
||||||
DEFINES += USE_UPNP
|
DEFINES += USE_UPNP
|
||||||
|
|
||||||
|
# change to your own path, where you will store all needed libraries with 'git clone' commands below.
|
||||||
|
MAIN_PATH = /path/to/libraries
|
||||||
|
|
||||||
# git clone https://github.com/PurpleI2P/Boost-for-Android-Prebuilt.git
|
# git clone https://github.com/PurpleI2P/Boost-for-Android-Prebuilt.git
|
||||||
# git clone https://github.com/PurpleI2P/OpenSSL-for-Android-Prebuilt.git
|
# git clone https://github.com/PurpleI2P/OpenSSL-for-Android-Prebuilt.git
|
||||||
# git clone https://github.com/PurpleI2P/MiniUPnP-for-Android-Prebuilt.git
|
# git clone https://github.com/PurpleI2P/MiniUPnP-for-Android-Prebuilt.git
|
||||||
# git clone https://github.com/PurpleI2P/android-ifaddrs.git
|
# git clone https://github.com/PurpleI2P/android-ifaddrs.git
|
||||||
# change to your own
|
|
||||||
BOOST_PATH = /home/rebby/andp/Boost-for-Android-Prebuilt
|
BOOST_PATH = $$MAIN_PATH/Boost-for-Android-Prebuilt
|
||||||
OPENSSL_PATH = /home/rebby/andp/OpenSSL-for-Android-Prebuilt
|
OPENSSL_PATH = $$MAIN_PATH/OpenSSL-for-Android-Prebuilt
|
||||||
MINIUPNP_PATH = /home/rebby/andp/MiniUPnP-for-Android-Prebuilt
|
MINIUPNP_PATH = $$MAIN_PATH/MiniUPnP-for-Android-Prebuilt
|
||||||
IFADDRS_PATH = /home/rebby/andp/android-ifaddrs
|
IFADDRS_PATH = $$MAIN_PATH/android-ifaddrs
|
||||||
|
|
||||||
# Steps in Android SDK manager:
|
# Steps in Android SDK manager:
|
||||||
# 1) Check Extras/Google Support Library https://developer.android.com/topic/libraries/support-library/setup.html
|
# 1) Check Extras/Google Support Library https://developer.android.com/topic/libraries/support-library/setup.html
|
||||||
# 2) Check API 11
|
# 2) Check API 11
|
||||||
# Finally, click Install.
|
# Finally, click Install.
|
||||||
|
|
||||||
SOURCES += DaemonQT.cpp\
|
SOURCES += DaemonQT.cpp mainwindow.cpp \
|
||||||
mainwindow.cpp \
|
../../HTTPServer.cpp ../../I2PControl.cpp ../../Daemon.cpp ../../Config.cpp \
|
||||||
../../HTTPServer.cpp ../../I2PControl.cpp ../../Daemon.cpp ../../Config.cpp \
|
../../AddressBook.cpp ../../api.cpp ../../Base.cpp ../../BOB.cpp ../../ClientContext.cpp \
|
||||||
../../AddressBook.cpp \
|
../../Crypto.cpp ../../Datagram.cpp ../../Destination.cpp ../../Family.cpp ../../FS.cpp \
|
||||||
../../api.cpp \
|
../../Garlic.cpp ../../HTTP.cpp ../../HTTPProxy.cpp ../../I2CP.cpp ../../I2NPProtocol.cpp \
|
||||||
../../Base.cpp \
|
../../I2PEndian.cpp ../../I2PService.cpp ../../I2PTunnel.cpp ../../Identity.cpp \
|
||||||
../../BOB.cpp \
|
../../LeaseSet.cpp ../../Log.cpp ../../NetDb.cpp ../../NetDbRequests.cpp \
|
||||||
../../ClientContext.cpp \
|
../../NTCPSession.cpp ../../Profiling.cpp ../../Reseed.cpp ../../RouterContext.cpp \
|
||||||
../../Crypto.cpp \
|
../../RouterInfo.cpp ../../SAM.cpp ../../Signature.cpp ../../SOCKS.cpp ../../SSU.cpp \
|
||||||
../../Datagram.cpp \
|
../../SSUData.cpp ../../SSUSession.cpp ../../Streaming.cpp ../../TransitTunnel.cpp \
|
||||||
../../Destination.cpp \
|
../../Transports.cpp ../../Tunnel.cpp ../../TunnelEndpoint.cpp ../../TunnelGateway.cpp \
|
||||||
../../Family.cpp \
|
../../TunnelPool.cpp ../../UPnP.cpp ../../util.cpp ../../i2pd.cpp
|
||||||
../../FS.cpp \
|
|
||||||
../../Garlic.cpp \
|
|
||||||
../../HTTP.cpp \
|
|
||||||
../../HTTPProxy.cpp \
|
|
||||||
../../I2CP.cpp \
|
|
||||||
../../I2NPProtocol.cpp \
|
|
||||||
../../I2PEndian.cpp \
|
|
||||||
../../I2PService.cpp \
|
|
||||||
../../I2PTunnel.cpp \
|
|
||||||
../../Identity.cpp \
|
|
||||||
../../LeaseSet.cpp \
|
|
||||||
../../Log.cpp \
|
|
||||||
../../NetDb.cpp \
|
|
||||||
../../NetDbRequests.cpp \
|
|
||||||
../../NTCPSession.cpp \
|
|
||||||
../../Profiling.cpp \
|
|
||||||
../../Reseed.cpp \
|
|
||||||
../../RouterContext.cpp \
|
|
||||||
../../RouterInfo.cpp \
|
|
||||||
../../SAM.cpp \
|
|
||||||
../../Signature.cpp \
|
|
||||||
../../SOCKS.cpp \
|
|
||||||
../../SSU.cpp \
|
|
||||||
../../SSUData.cpp \
|
|
||||||
../../SSUSession.cpp \
|
|
||||||
../../Streaming.cpp \
|
|
||||||
../../TransitTunnel.cpp \
|
|
||||||
../../Transports.cpp \
|
|
||||||
../../Tunnel.cpp \
|
|
||||||
../../TunnelEndpoint.cpp \
|
|
||||||
../../TunnelGateway.cpp \
|
|
||||||
../../TunnelPool.cpp \
|
|
||||||
../../UPnP.cpp \
|
|
||||||
../../util.cpp \
|
|
||||||
../../i2pd.cpp
|
|
||||||
|
|
||||||
HEADERS += DaemonQT.h mainwindow.h \
|
HEADERS += DaemonQT.h mainwindow.h \
|
||||||
../../HTTPServer.h ../../I2PControl.h ../../UPnP.h ../../Daemon.h ../../Config.h \
|
../../HTTPServer.h ../../I2PControl.h ../../UPnP.h ../../Daemon.h ../../Config.h \
|
||||||
../../AddressBook.h \
|
../../AddressBook.h ../../api.h ../../Base.h ../../BOB.h ../../ClientContext.h \
|
||||||
../../api.h \
|
../../Crypto.h ../../Datagram.h ../../Destination.h ../../Family.h ../../FS.h \
|
||||||
../../Base.h \
|
../../Garlic.h ../../HTTP.h ../../HTTPProxy.h ../../I2CP.h ../../I2NPProtocol.h \
|
||||||
../../BOB.h \
|
../../I2PEndian.h ../../I2PService.h ../../I2PTunnel.h ../../Identity.h ../../LeaseSet.h \
|
||||||
../../ClientContext.h \
|
../../LittleBigEndian.h ../../Log.h ../../NetDb.h ../../NetDbRequests.h ../../NTCPSession.h \
|
||||||
../../Crypto.h \
|
../../Profiling.h ../../Queue.h ../../Reseed.h ../../RouterContext.h ../../RouterInfo.h \
|
||||||
../../Datagram.h \
|
../../SAM.h ../../Signature.h ../../SOCKS.h ../../SSU.h ../../SSUData.h ../../SSUSession.h \
|
||||||
../../Destination.h \
|
../../Streaming.h ../../Timestamp.h ../../TransitTunnel.h ../../Transports.h \
|
||||||
../../Family.h \
|
../../TransportSession.h ../../Tunnel.h ../../TunnelBase.h ../../TunnelConfig.h \
|
||||||
../../FS.h \
|
../../TunnelEndpoint.h ../../TunnelGateway.h ../../TunnelPool.h ../../UPnP.h \
|
||||||
../../Garlic.h \
|
../../util.h ../../version.h
|
||||||
../../HTTP.h \
|
|
||||||
../../HTTPProxy.h \
|
|
||||||
../../I2CP.h \
|
|
||||||
../../I2NPProtocol.h \
|
|
||||||
../../I2PEndian.h \
|
|
||||||
../../I2PService.h \
|
|
||||||
../../I2PTunnel.h \
|
|
||||||
../../Identity.h \
|
|
||||||
../../LeaseSet.h \
|
|
||||||
../../LittleBigEndian.h \
|
|
||||||
../../Log.h \
|
|
||||||
../../NetDb.h \
|
|
||||||
../../NetDbRequests.h \
|
|
||||||
../../NTCPSession.h \
|
|
||||||
../../Profiling.h \
|
|
||||||
../../Queue.h \
|
|
||||||
../../Reseed.h \
|
|
||||||
../../RouterContext.h \
|
|
||||||
../../RouterInfo.h \
|
|
||||||
../../SAM.h \
|
|
||||||
../../Signature.h \
|
|
||||||
../../SOCKS.h \
|
|
||||||
../../SSU.h \
|
|
||||||
../../SSUData.h \
|
|
||||||
../../SSUSession.h \
|
|
||||||
../../Streaming.h \
|
|
||||||
../../Timestamp.h \
|
|
||||||
../../TransitTunnel.h \
|
|
||||||
../../Transports.h \
|
|
||||||
../../TransportSession.h \
|
|
||||||
../../Tunnel.h \
|
|
||||||
../../TunnelBase.h \
|
|
||||||
../../TunnelConfig.h \
|
|
||||||
../../TunnelEndpoint.h \
|
|
||||||
../../TunnelGateway.h \
|
|
||||||
../../TunnelPool.h \
|
|
||||||
../../UPnP.h \
|
|
||||||
../../util.h \
|
|
||||||
../../version.h
|
|
||||||
|
|
||||||
FORMS += mainwindow.ui
|
FORMS += mainwindow.ui
|
||||||
|
|
||||||
CONFIG += mobility
|
CONFIG += mobility
|
||||||
|
|
||||||
MOBILITY =
|
MOBILITY =
|
||||||
|
|
||||||
LIBS += -lz
|
LIBS += -lz
|
||||||
|
|
||||||
android {
|
android {
|
||||||
message("Using Android settings")
|
message("Using Android settings")
|
||||||
DEFINES += ANDROID=1
|
DEFINES += ANDROID=1
|
||||||
DEFINES += __ANDROID__
|
DEFINES += __ANDROID__
|
||||||
|
|
||||||
INCLUDEPATH += $$BOOST_PATH/boost_1_53_0/include \
|
INCLUDEPATH += $$BOOST_PATH/boost_1_53_0/include \
|
||||||
$$OPENSSL_PATH/openssl-1.0.2/include \
|
$$OPENSSL_PATH/openssl-1.0.2/include \
|
||||||
$$MINIUPNP_PATH/miniupnp-2.0/include \
|
$$MINIUPNP_PATH/miniupnp-2.0/include \
|
||||||
$$IFADDRS_PATH
|
$$IFADDRS_PATH
|
||||||
DISTFILES += \
|
DISTFILES += android/AndroidManifest.xml
|
||||||
android/AndroidManifest.xml
|
|
||||||
|
|
||||||
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
|
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
|
||||||
|
|
||||||
SOURCES += $$IFADDRS_PATH/ifaddrs.c
|
SOURCES += $$IFADDRS_PATH/ifaddrs.c
|
||||||
HEADERS += $$IFADDRS_PATH/ifaddrs.h
|
HEADERS += $$IFADDRS_PATH/ifaddrs.h
|
||||||
|
|
||||||
equals(ANDROID_TARGET_ARCH, armeabi-v7a){
|
equals(ANDROID_TARGET_ARCH, armeabi-v7a){
|
||||||
|
DEFINES += ANDROID_ARM7A
|
||||||
|
# http://stackoverflow.com/a/30235934/529442
|
||||||
|
LIBS += -L$$BOOST_PATH/boost_1_53_0/armeabi-v7a/lib \
|
||||||
|
-lboost_system-gcc-mt-1_53 -lboost_date_time-gcc-mt-1_53 \
|
||||||
|
-lboost_filesystem-gcc-mt-1_53 -lboost_program_options-gcc-mt-1_53 \
|
||||||
|
-L$$OPENSSL_PATH/openssl-1.0.2/armeabi-v7a/lib/ -lcrypto -lssl \
|
||||||
|
-L$$MINIUPNP_PATH/miniupnp-2.0/armeabi-v7a/lib/ -lminiupnpc
|
||||||
|
|
||||||
DEFINES += ANDROID_ARM7A
|
PRE_TARGETDEPS += $$OPENSSL_PATH/openssl-1.0.2/armeabi-v7a/lib/libcrypto.a \
|
||||||
|
$$OPENSSL_PATH/openssl-1.0.2/armeabi-v7a/lib/libssl.a
|
||||||
|
DEPENDPATH += $$OPENSSL_PATH/openssl-1.0.2/include
|
||||||
|
|
||||||
# http://stackoverflow.com/a/30235934/529442
|
ANDROID_EXTRA_LIBS += $$OPENSSL_PATH/openssl-1.0.2/armeabi-v7a/lib/libcrypto_1_0_0.so \
|
||||||
LIBS += -L$$BOOST_PATH/boost_1_53_0/armeabi-v7a/lib \
|
$$OPENSSL_PATH/openssl-1.0.2/armeabi-v7a/lib/libssl_1_0_0.so \
|
||||||
-lboost_system-gcc-mt-1_53 \
|
$$MINIUPNP_PATH/miniupnp-2.0/armeabi-v7a/lib/libminiupnpc.so
|
||||||
-lboost_date_time-gcc-mt-1_53 \
|
}
|
||||||
-lboost_filesystem-gcc-mt-1_53 \
|
|
||||||
-lboost_program_options-gcc-mt-1_53 \
|
|
||||||
-L$$OPENSSL_PATH/openssl-1.0.2/armeabi-v7a/lib/ -lcrypto -lssl \
|
|
||||||
-L$$MINIUPNP_PATH/miniupnp-2.0/armeabi-v7a/lib/ -lminiupnpc
|
|
||||||
|
|
||||||
PRE_TARGETDEPS += $$OPENSSL_PATH/openssl-1.0.2/armeabi-v7a/lib/libcrypto.a \
|
equals(ANDROID_TARGET_ARCH, x86){
|
||||||
$$OPENSSL_PATH/openssl-1.0.2/armeabi-v7a/lib/libssl.a
|
# http://stackoverflow.com/a/30235934/529442
|
||||||
|
LIBS += -L$$BOOST_PATH/boost_1_53_0/x86/lib \
|
||||||
|
-lboost_system-gcc-mt-1_53 -lboost_date_time-gcc-mt-1_53 \
|
||||||
|
-lboost_filesystem-gcc-mt-1_53 -lboost_program_options-gcc-mt-1_53 \
|
||||||
|
-L$$OPENSSL_PATH/openssl-1.0.2/x86/lib/ -lcrypto -lssl \
|
||||||
|
-L$$MINIUPNP_PATH/miniupnp-2.0/x86/lib/ -lminiupnpc
|
||||||
|
|
||||||
DEPENDPATH += $$OPENSSL_PATH/openssl-1.0.2/include
|
PRE_TARGETDEPS += $$OPENSSL_PATH/openssl-1.0.2/x86/lib/libcrypto.a \
|
||||||
|
$$OPENSSL_PATH/openssl-1.0.2/x86/lib/libssl.a
|
||||||
|
|
||||||
ANDROID_EXTRA_LIBS += $$OPENSSL_PATH/openssl-1.0.2/armeabi-v7a/lib/libcrypto_1_0_0.so \
|
DEPENDPATH += $$OPENSSL_PATH/openssl-1.0.2/include
|
||||||
$$OPENSSL_PATH/openssl-1.0.2/armeabi-v7a/lib/libssl_1_0_0.so \
|
|
||||||
$$MINIUPNP_PATH/miniupnp-2.0/armeabi-v7a/lib/libminiupnpc.so
|
|
||||||
}
|
|
||||||
equals(ANDROID_TARGET_ARCH, x86){
|
|
||||||
# http://stackoverflow.com/a/30235934/529442
|
|
||||||
LIBS += -L$$BOOST_PATH/boost_1_53_0/x86/lib \
|
|
||||||
-lboost_system-gcc-mt-1_53 \
|
|
||||||
-lboost_date_time-gcc-mt-1_53 \
|
|
||||||
-lboost_filesystem-gcc-mt-1_53 \
|
|
||||||
-lboost_program_options-gcc-mt-1_53 \
|
|
||||||
-L$$OPENSSL_PATH/openssl-1.0.2/x86/lib/ -lcrypto -lssl \
|
|
||||||
-L$$MINIUPNP_PATH/miniupnp-2.0/x86/lib/ -lminiupnpc
|
|
||||||
|
|
||||||
PRE_TARGETDEPS += $$OPENSSL_PATH/openssl-1.0.2/x86/lib/libcrypto.a \
|
ANDROID_EXTRA_LIBS += $$OPENSSL_PATH/openssl-1.0.2/x86/lib/libcrypto_1_0_0.so \
|
||||||
$$OPENSSL_PATH/openssl-1.0.2/x86/lib/libssl.a
|
$$OPENSSL_PATH/openssl-1.0.2/x86/lib/libssl_1_0_0.so \
|
||||||
|
$$MINIUPNP_PATH/miniupnp-2.0/x86/lib/libminiupnpc.so
|
||||||
DEPENDPATH += $$OPENSSL_PATH/openssl-1.0.2/include
|
}
|
||||||
|
|
||||||
ANDROID_EXTRA_LIBS += $$OPENSSL_PATH/openssl-1.0.2/x86/lib/libcrypto_1_0_0.so \
|
|
||||||
$$OPENSSL_PATH/openssl-1.0.2/x86/lib/libssl_1_0_0.so \
|
|
||||||
$$MINIUPNP_PATH/miniupnp-2.0/x86/lib/libminiupnpc.so
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
linux:!android {
|
linux:!android {
|
||||||
message("Using Linux settings")
|
message("Using Linux settings")
|
||||||
LIBS += -lcrypto -lssl -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lpthread -lminiupnpc
|
LIBS += -lcrypto -lssl -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lpthread -lminiupnpc
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
!android:!symbian:!maemo5:!simulator {
|
!android:!symbian:!maemo5:!simulator {
|
||||||
message("Build with a system tray icon")
|
message("Build with a system tray icon")
|
||||||
# see also http://doc.qt.io/qt-4.8/qt-desktop-systray-systray-pro.html for example on wince*
|
# see also http://doc.qt.io/qt-4.8/qt-desktop-systray-systray-pro.html for example on wince*
|
||||||
#sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS i2pd_qt.pro resources images
|
#sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS i2pd_qt.pro resources images
|
||||||
RESOURCES = i2pd.qrc
|
RESOURCES = i2pd.qrc
|
||||||
QT += xml
|
QT += xml
|
||||||
#INSTALLS += sources
|
#INSTALLS += sources
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue