athena/extern/CMakeLists.txt

14 lines
427 B
CMake
Raw Permalink Normal View History

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