adding missing lib for linux

This commit is contained in:
Dario 2019-10-22 14:58:20 +02:00
parent 4158da35e1
commit d922b31257
2 changed files with 1 additions and 2 deletions

View File

@ -102,5 +102,5 @@ if(WIN32)
TARGET_LINK_LIBRARIES(Gradido_LoginServer optimized ${MYSQL_LIBRARIES} Shlwapi) TARGET_LINK_LIBRARIES(Gradido_LoginServer optimized ${MYSQL_LIBRARIES} Shlwapi)
TARGET_LINK_LIBRARIES(Gradido_LoginServer debug ${COMPILED_MARIADB_CLIENT_DEBUG} Shlwapi) TARGET_LINK_LIBRARIES(Gradido_LoginServer debug ${COMPILED_MARIADB_CLIENT_DEBUG} Shlwapi)
else(WIN32) else(WIN32)
target_link_libraries(Gradido_LoginServer libmariadb PocoNet PocoUtil PocoFoundation PocoData PocoNetSSL -lpthread) target_link_libraries(Gradido_LoginServer libmariadb PocoNet PocoUtil PocoJSON PocoFoundation PocoData PocoNetSSL -lpthread)
endif(WIN32) endif(WIN32)

View File

@ -2,7 +2,6 @@
#define __JSON_INTERFACE_JSON_GET_LOGIN_ #define __JSON_INTERFACE_JSON_GET_LOGIN_
#include "JsonRequestHandler.h" #include "JsonRequestHandler.h"
#include "Poco/Dynamic/Var.h"
class JsonGetLogin : public JsonRequestHandler class JsonGetLogin : public JsonRequestHandler
{ {