feat(tgbot-back): Add functions for processing user authentication
This commit is contained in:
parent
d6194ec8be
commit
f045eb22b2
6 changed files with 122 additions and 21 deletions
|
|
@ -11,6 +11,9 @@ list(APPEND SOURCES ${SRC_BACK})
|
|||
file(GLOB_RECURSE SRC_API "generated-client/src/*.cpp")
|
||||
list(APPEND SOURCES ${SRC_API})
|
||||
|
||||
file(GLOB_RECURSE SRC_AUTH "generated-client-auth/src/*.cpp")
|
||||
list(APPEND SOURCES ${SRC_AUTH})
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
|
||||
|
|
@ -26,6 +29,7 @@ include_directories(/usr/local/include ${OPENSSL_INCLUDE_DIR} ${Boost_INCLUDE_DI
|
|||
include_directories(front/include/)
|
||||
include_directories(back/include)
|
||||
include_directories(generated-client/include)
|
||||
include_directories(generated-client-auth/include)
|
||||
if (CURL_FOUND)
|
||||
include_directories(${CURL_INCLUDE_DIRS})
|
||||
add_definitions(-DHAVE_CURL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue