mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-18 03:45:41 +00:00
dep: Add stb_image
This commit is contained in:
parent
29d918dbb0
commit
56c50c6eeb
|
@ -1,6 +1,8 @@
|
||||||
set(SRCS
|
set(SRCS
|
||||||
|
include/stb_image.h
|
||||||
include/stb_image_resize.h
|
include/stb_image_resize.h
|
||||||
include/stb_image_write.h
|
include/stb_image_write.h
|
||||||
|
src/stb_image.c
|
||||||
src/stb_image_resize.c
|
src/stb_image_resize.c
|
||||||
src/stb_image_write.c
|
src/stb_image_write.c
|
||||||
)
|
)
|
||||||
|
|
7656
dep/stb/include/stb_image.h
Normal file
7656
dep/stb/include/stb_image.h
Normal file
File diff suppressed because it is too large
Load diff
2
dep/stb/src/stb_image.c
Normal file
2
dep/stb/src/stb_image.c
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#define STB_IMAGE_IMPLEMENTATION
|
||||||
|
#include "stb_image.h"
|
|
@ -35,10 +35,12 @@
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<ClCompile Include="src\stb_image.c" />
|
||||||
<ClCompile Include="src\stb_image_resize.c" />
|
<ClCompile Include="src\stb_image_resize.c" />
|
||||||
<ClCompile Include="src\stb_image_write.c" />
|
<ClCompile Include="src\stb_image_write.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<ClInclude Include="include\stb_image.h" />
|
||||||
<ClInclude Include="include\stb_image_resize.h" />
|
<ClInclude Include="include\stb_image_resize.h" />
|
||||||
<ClInclude Include="include\stb_image_write.h" />
|
<ClInclude Include="include\stb_image_write.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -3,9 +3,11 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="src\stb_image_write.c" />
|
<ClCompile Include="src\stb_image_write.c" />
|
||||||
<ClCompile Include="src\stb_image_resize.c" />
|
<ClCompile Include="src\stb_image_resize.c" />
|
||||||
|
<ClCompile Include="src\stb_image.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="include\stb_image_write.h" />
|
<ClInclude Include="include\stb_image_write.h" />
|
||||||
<ClInclude Include="include\stb_image_resize.h" />
|
<ClInclude Include="include\stb_image_resize.h" />
|
||||||
|
<ClInclude Include="include\stb_image.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
Loading…
Reference in a new issue