feat/support_fiber #2

Merged
tqcq merged 57 commits from feat/support_fiber into master 2024-06-21 10:33:52 +08:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 4806dd449e - Show all commits

View File

@ -71,6 +71,7 @@ add_subdirectory("third_party/context")
add_subdirectory("third_party/zlib")
add_subdirectory("third_party/fmt")
add_subdirectory("third_party/googletest")
set(INTTYPES_FORMAT "C99")
add_subdirectory("third_party/gflags")
set(GFLAGS_USE_TARGET_NAMESPACE ON)
set(gflags_DIR "${CMAKE_CURRENT_BINARY_DIR}/third_party/gflags")

View File

@ -297,7 +297,7 @@ gflags_define(
"Format of integer types: \"C99\" (uint32_t), \"BSD\" (u_int32_t), \"VC7\" (__int32)"
"")
gflags_property(INTTYPES_FORMAT STRINGS "C99;BSD;VC7")
gflags_property(INTTYPES_FORMAT ADVANCED FALSE)
gflags_property(INTTYPES_FORMAT ADVANCED TRUE)
if(NOT INTTYPES_FORMAT)
set(TYPES uint32_t u_int32_t)
if(MSVC)