diff options
author | Alexandre Bouvier <contact@amb.tf> | 2023-10-12 16:36:26 +0200 |
---|---|---|
committer | Alexandre Bouvier <contact@amb.tf> | 2023-10-25 21:47:32 +0200 |
commit | 79ba5d9c260ca4e2890b8e9c9efd79e3df5fe763 (patch) | |
tree | 31f33d5ccac863e5584b3be53cd2e07a314c9b8e /src/common/stb.cpp | |
parent | 6eb3a583cbbb55ebe6dd2409f5f53aef02cff561 (diff) |
cmake: prefer system stb headers
Diffstat (limited to 'src/common/stb.cpp')
-rw-r--r-- | src/common/stb.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/stb.cpp b/src/common/stb.cpp new file mode 100644 index 000000000..d3b16665d --- /dev/null +++ b/src/common/stb.cpp @@ -0,0 +1,8 @@ +// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#define STB_IMAGE_IMPLEMENTATION +#define STB_IMAGE_RESIZE_IMPLEMENTATION +#define STB_IMAGE_WRITE_IMPLEMENTATION + +#include "common/stb.h" |