From 7c55a7ccca9b22da2fb213a3903963277968a46f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 25 Apr 2022 14:25:32 +0200 Subject: [PATCH] CMake: add harvesting of `fmt` library The library was built with `make deps`, but not installed. Now it is. --- build_files/build_environment/cmake/harvest.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build_files/build_environment/cmake/harvest.cmake b/build_files/build_environment/cmake/harvest.cmake index 2e23c23998a..6bd8767d6ad 100644 --- a/build_files/build_environment/cmake/harvest.cmake +++ b/build_files/build_environment/cmake/harvest.cmake @@ -71,6 +71,8 @@ harvest(imath/include imath/include "*.h") harvest(imath/lib imath/lib "*.a") harvest(ffmpeg/include ffmpeg/include "*.h") harvest(ffmpeg/lib ffmpeg/lib "*.a") +harvest(fmt/include fmt/include "*.h") +harvest(fmt/lib fmt/lib "*.a") harvest(fftw3/include fftw3/include "*.h") harvest(fftw3/lib fftw3/lib "*.a") harvest(flac/lib sndfile/lib "libFLAC.a")