Merge branch 'kall'

This commit is contained in:
Markus 2022-01-09 01:26:25 +01:00
commit 77a94bf532
2 changed files with 11 additions and 9 deletions

View File

@ -1,22 +1,18 @@
QT -= gui





#INCLUDEPATH += -L$${_PRO_FILE_PWD_}\openssl-android-arm64-v8a\include

LIBS += -L$${_PRO_FILE_PWD_}\lib -lssl
LIBS += -L$${_PRO_FILE_PWD_}\lib -lcrypto
LIBS += -L$${_PRO_FILE_PWD_}\lib -lcurl

#LIBS += -L$${_PRO_FILE_PWD_}\lib -lssl
#LIBS += -L$${_PRO_FILE_PWD_}\lib -lcrypto
#LIBS += -L$${_PRO_FILE_PWD_}\lib -lcurl


#Linux:
#unix: LIBS += -lcurl
unix: LIBS += -lcurl

#Windows
#win32: LIBS += -L$${_PRO_FILE_PWD_}\curl -lcurl
win32: LIBS += -L$${_PRO_FILE_PWD_}\curl -lcurl


CONFIG += c++14 console

View File

@ -148,8 +148,14 @@ int manageParameter(Settings &settings, int argc, char **argv)
void unterOption_printVersion(Settings &settings)
{
std::cout << "Programinfos:" << std::endl
<< " > Build-Datum: " << __DATE__ << std::endl
<< " > Build-Uhrzeit: " << __TIME__ << std::endl
<< " > Program Version: " << settings.version << std::endl
<< " > Defaults Datei Version: " << settings.defaultFileVersion << std::endl
#ifdef __MINGW_GCC_VERSION
<< " > MINGW GCC Version: " <<__GNUC__ << "." << __GNUC_MINOR__ << "." << __GNUC_PATCHLEVEL__ << std::endl
#endif

<< " > C++ Standart: ";
if(__cplusplus == 1) std::cout << "C++_Pre_C++98" << std::endl;
else if (__cplusplus == 199711) std::cout << "C++98" << std::endl;