mirror of https://github.com/encounter/SDL.git
Fixed building YUV test programs (thanks Ozkan!)
This commit is contained in:
parent
a6a4e27ae8
commit
4764f7a45c
|
@ -212,6 +212,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\test\testoverlay2.c" />
|
<ClCompile Include="..\..\..\test\testoverlay2.c" />
|
||||||
|
<ClCompile Include="..\..\..\test\testyuv_cvt.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
|
|
@ -219,7 +219,7 @@ endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
testoverlay2$(EXE): $(srcdir)/testoverlay2.c
|
testoverlay2$(EXE): $(srcdir)/testoverlay2.c $(srcdir)/testyuv_cvt.c
|
||||||
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
|
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
|
||||||
|
|
||||||
testplatform$(EXE): $(srcdir)/testplatform.c
|
testplatform$(EXE): $(srcdir)/testplatform.c
|
||||||
|
@ -267,7 +267,7 @@ testviewport$(EXE): $(srcdir)/testviewport.c
|
||||||
testwm2$(EXE): $(srcdir)/testwm2.c
|
testwm2$(EXE): $(srcdir)/testwm2.c
|
||||||
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
|
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
|
||||||
|
|
||||||
testyuv$(EXE): $(srcdir)/testyuv.c
|
testyuv$(EXE): $(srcdir)/testyuv.c $(srcdir)/testyuv_cvt.c
|
||||||
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
|
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
|
||||||
|
|
||||||
torturethread$(EXE): $(srcdir)/torturethread.c
|
torturethread$(EXE): $(srcdir)/torturethread.c
|
||||||
|
|
Loading…
Reference in New Issue