Build system: default to fmt shared library when available

This commit is contained in:
mazes-80 2019-06-17 16:28:44 +02:00 committed by Léo Lam
parent 15acce847d
commit 209db1f96c
1 changed files with 7 additions and 1 deletions

View File

@ -532,7 +532,13 @@ if (_M_X86)
add_subdirectory(Externals/Bochs_disasm)
endif()
add_subdirectory(Externals/cpp-optparse)
add_subdirectory(Externals/fmt EXCLUDE_FROM_ALL)
find_package(fmt 6.0)
if(fmt_FOUND)
message(STATUS "Using shared fmt ${fmt_VERSION}")
else()
message(STATUS "Using static fmt from Externals")
add_subdirectory(Externals/fmt EXCLUDE_FROM_ALL)
endif()
add_subdirectory(Externals/glslang)
add_subdirectory(Externals/imgui)