add config.json

This commit is contained in:
Антон 2024-01-20 18:47:02 +03:00
parent 4230d9ec24
commit 2f729981fa
2 changed files with 12 additions and 0 deletions

View File

@ -19,6 +19,8 @@ endif ()
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
configure_file(config.json ${CMAKE_BUILD_RPATH} config.json COPYONLY)
add_executable(hello_async
main.cpp
src/http_server.cpp

10
config.json Normal file
View File

@ -0,0 +1,10 @@
{
"maps": {
"map1": {
"a": 123
},
"map2": {
"b": 456
}
}
}