From 6fc09121378d78026f799a820ce689f2d30bb0c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 15 Jun 2023 13:41:52 +0200 Subject: minimp3: Add a .cpp file to simplify building the single-header implementation Single-header libraries like this require passing a bunch of defines _once_ before including the header, but not multiple times. This can make it tricky in user code to know when to request the implementation, if the header needs to be included in multiple files. So properly compiling a .cpp file for the implementation solves this, and also enables us to properly disable warnings on thirdparty implementation code. --- thirdparty/minimp3/minimp3_ex.cpp | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 thirdparty/minimp3/minimp3_ex.cpp (limited to 'thirdparty/minimp3') diff --git a/thirdparty/minimp3/minimp3_ex.cpp b/thirdparty/minimp3/minimp3_ex.cpp new file mode 100644 index 0000000000..49c083e4f1 --- /dev/null +++ b/thirdparty/minimp3/minimp3_ex.cpp @@ -0,0 +1,5 @@ +#define MINIMP3_IMPLEMENTATION +#define MINIMP3_FLOAT_OUTPUT +#define MINIMP3_ONLY_MP3 +#define MINIMP3_NO_STDIO +#include "minimp3_ex.h" -- cgit v1.2.3