athena/extern/CMakeLists.txt

15 lines
456 B
CMake
Raw Normal View History

2018-12-20 03:43:07 +00:00
add_subdirectory(lzokay)
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()