1
0
Files
libcmo21/LibCmo/LibCmo/VTImage.cpp
yyc12345 f9ab66dfc2 chore: update build script
- change project layout for better understanding.
- update build script for more close to standard cmake way.
2026-01-24 17:16:13 +08:00

14 lines
401 B
C++

/**
* \file
* This file extract all stb-image implementations used by this project.
* Because std-image is a header-only library.
* It use macro to control whether extract implementation.
*/
#define STB_IMAGE_IMPLEMENTATION
#include <stb_image.h>
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include <stb_image_write.h>
#define STB_IMAGE_RESIZE_IMPLEMENTATION
#include <deprecated/stb_image_resize.h>