CMake: Add option to disable use of bundled fmtlib

This commit is contained in:
Yuri Kunde Schlesner 2016-11-23 20:40:15 -08:00 committed by Merry
parent 9ec51f74bd
commit 700561a69a

View file

@ -2,5 +2,7 @@
# simply add the directory to that file as a subdirectory
# to have CMake automatically recognize them.
# fmtlib formatting library
add_subdirectory(fmt)
if (NOT DYNARMIC_NO_BUNDLED_FMT)
# fmtlib formatting library
add_subdirectory(fmt)
endif()