diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-06-15 13:41:52 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-06-15 13:50:27 +0200 |
commit | 6fc09121378d78026f799a820ce689f2d30bb0c9 (patch) | |
tree | 000e06751da4f737498efd333ed22c344c46d60b /thirdparty/minimp3 | |
parent | 773414606079fa745d1c37fce49324ab6a09e972 (diff) | |
download | redot-engine-6fc09121378d78026f799a820ce689f2d30bb0c9.tar.gz |
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.
Diffstat (limited to 'thirdparty/minimp3')
-rw-r--r-- | thirdparty/minimp3/minimp3_ex.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
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" |