2018-12-20 03:43:07 +00:00
|
|
|
add_subdirectory(lzokay)
|
2021-03-01 23:18:22 +00:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
|
|
target_compile_options(lzokay PRIVATE -Wno-maybe-uninitialized)
|
|
|
|
endif ()
|
2015-07-07 03:23:37 +00:00
|
|
|
add_subdirectory(zlib)
|
2015-07-30 06:09:37 +00:00
|
|
|
add_subdirectory(yaml)
|
2019-07-20 04:19:44 +00:00
|
|
|
if(NOT TARGET fmt)
|
|
|
|
add_subdirectory(fmt)
|
2021-04-06 21:53:16 +00:00
|
|
|
target_compile_definitions(fmt PUBLIC
|
|
|
|
FMT_STRING_ALIAS=1
|
|
|
|
FMT_ARM_ABI_COMPATIBILITY=1
|
|
|
|
FMT_EXCEPTIONS=0)
|
|
|
|
target_compile_definitions(fmt INTERFACE
|
|
|
|
FMT_ENFORCE_COMPILE_STRING=1)
|
2019-07-20 04:19:44 +00:00
|
|
|
endif()
|