From d499c1a2d4f0cbbb4de41baa6b5ecb69be9db581 Mon Sep 17 00:00:00 2001 From: Rosalie Wanders Date: Sat, 12 Aug 2023 13:43:22 +0200 Subject: [PATCH] cmake: add USE_LIBFMT option --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 13d2ec26..a30bdec2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,6 +12,7 @@ option(VRU "Enables VRU support in RMG-Input" ON) option(USE_CCACHE "Enables usage of ccache when ccache has been found" ON) option(USE_LTO "Enables building with LTO/IPO when compiler supports it" ON) option(NO_RUST "Disables the building of rust subprojects" OFF) +option(USE_LIBFMT "Enables usage of libfmt instead of using std::format" OFF) project(RMG)