Исходники перемещены в src.

This commit is contained in:
Kirill Kirilenko 2022-11-20 00:00:58 +03:00
parent 193dabe805
commit 61246591f0
19 changed files with 19 additions and 18 deletions

View file

@ -10,21 +10,4 @@ find_package(Boost COMPONENTS system REQUIRED)
add_subdirectory(external) add_subdirectory(external)
add_executable(court_monitor add_subdirectory(src)
Bot.cpp
BotSession.cpp
CourtApi.cpp
Dialog.cpp
Logger.cpp
Storage.cpp
SubscribeCaseDialog.cpp
main.cpp
)
target_link_libraries(court_monitor
banana-beast
fmt::fmt
nlohmann_json::nlohmann_json
certify::core
Boost::system
${OPENSSL_LIBRARIES}
)

View file

18
src/CMakeLists.txt Normal file
View file

@ -0,0 +1,18 @@
add_executable(court_monitor
Bot.cpp
BotSession.cpp
CourtApi.cpp
Dialog.cpp
Logger.cpp
Storage.cpp
SubscribeCaseDialog.cpp
main.cpp
)
target_link_libraries(court_monitor
banana-beast
fmt::fmt
nlohmann_json::nlohmann_json
certify::core
Boost::system
${OPENSSL_LIBRARIES}
)