bump project C++ version to C++23

This commit is contained in:
Slavasil 2024-11-16 22:44:59 +03:00
parent b422c15008
commit f7e6699fec

View File

@ -9,4 +9,6 @@ add_subdirectory(td)
add_executable(${PROJECT_NAME} main.cpp http.cpp vk.cpp) add_executable(${PROJECT_NAME} main.cpp http.cpp vk.cpp)
target_compile_options(${PROJECT_NAME} PRIVATE -std=c++2b)
target_link_libraries(${PROJECT_NAME} PRIVATE CURL::libcurl nlohmann_json::nlohmann_json uv spdlog::spdlog Td::TdStatic $<$<BOOL:${MINGW}>:ws2_32>) target_link_libraries(${PROJECT_NAME} PRIVATE CURL::libcurl nlohmann_json::nlohmann_json uv spdlog::spdlog Td::TdStatic $<$<BOOL:${MINGW}>:ws2_32>)