From 757231cc6e777b8f4717d1467ef7efa01c7fde15 Mon Sep 17 00:00:00 2001 From: peterbell10 Date: Wed, 3 Jan 2018 17:41:16 +0000 Subject: Add the fmt library (#4065) * Replaces AppendVPrintf with fmt::sprintf * fmt::ArgList now used as a type safe alternative to varargs. * Removed SIZE_T_FMT compatibility macros. fmt::sprintf is fully portable and supports %zu. * Adds FLOG functions to log with fmt's native formatting style. --- Tools/GrownBiomeGenVisualiser/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Tools/GrownBiomeGenVisualiser/CMakeLists.txt') diff --git a/Tools/GrownBiomeGenVisualiser/CMakeLists.txt b/Tools/GrownBiomeGenVisualiser/CMakeLists.txt index 0a8b7930e..4626ecf73 100644 --- a/Tools/GrownBiomeGenVisualiser/CMakeLists.txt +++ b/Tools/GrownBiomeGenVisualiser/CMakeLists.txt @@ -1,3 +1,4 @@ +cmake_minimum_required(VERSION 3.0.2) project (GrownBiomeGenVisualiser) # Without this, the MSVC variable isn't defined for MSVC builds ( https://www.cmake.org/pipermail/cmake/2011-November/047130.html ) @@ -89,4 +90,6 @@ add_executable(GrownBiomeGenVisualiser ${SHARED_OSS_HDR} ) +target_link_libraries(GrownBiomeGenVisualiser fmt::fmt) + set_target_properties(GrownBiomeGenVisualiser PROPERTIES FOLDER Tools) -- cgit v1.2.3