dep: Add stb_image
This commit is contained in:
parent
29d918dbb0
commit
56c50c6eeb
|
@ -1,6 +1,8 @@
|
|||
set(SRCS
|
||||
include/stb_image.h
|
||||
include/stb_image_resize.h
|
||||
include/stb_image_write.h
|
||||
src/stb_image.c
|
||||
src/stb_image_resize.c
|
||||
src/stb_image_write.c
|
||||
)
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,2 @@
|
|||
#define STB_IMAGE_IMPLEMENTATION
|
||||
#include "stb_image.h"
|
|
@ -35,10 +35,12 @@
|
|||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="src\stb_image.c" />
|
||||
<ClCompile Include="src\stb_image_resize.c" />
|
||||
<ClCompile Include="src\stb_image_write.c" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\stb_image.h" />
|
||||
<ClInclude Include="include\stb_image_resize.h" />
|
||||
<ClInclude Include="include\stb_image_write.h" />
|
||||
</ItemGroup>
|
||||
|
|
|
@ -3,9 +3,11 @@
|
|||
<ItemGroup>
|
||||
<ClCompile Include="src\stb_image_write.c" />
|
||||
<ClCompile Include="src\stb_image_resize.c" />
|
||||
<ClCompile Include="src\stb_image.c" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="include\stb_image_write.h" />
|
||||
<ClInclude Include="include\stb_image_resize.h" />
|
||||
<ClInclude Include="include\stb_image.h" />
|
||||
</ItemGroup>
|
||||
</Project>
|
Loading…
Reference in New Issue