Skip to content

Commit

Permalink
Fixed building YUV test programs (thanks Ozkan!)
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Nov 17, 2017
1 parent a6a4e27 commit 4764f7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion VisualC/tests/testoverlay2/testoverlay2.vcxproj
Expand Up @@ -212,8 +212,9 @@
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\..\test\testoverlay2.c" />
<ClCompile Include="..\..\..\test\testyuv_cvt.c" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>
4 changes: 2 additions & 2 deletions test/Makefile.in
Expand Up @@ -219,7 +219,7 @@ endif
endif
endif

testoverlay2$(EXE): $(srcdir)/testoverlay2.c
testoverlay2$(EXE): $(srcdir)/testoverlay2.c $(srcdir)/testyuv_cvt.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)

testplatform$(EXE): $(srcdir)/testplatform.c
Expand Down Expand Up @@ -267,7 +267,7 @@ testviewport$(EXE): $(srcdir)/testviewport.c
testwm2$(EXE): $(srcdir)/testwm2.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)

testyuv$(EXE): $(srcdir)/testyuv.c
testyuv$(EXE): $(srcdir)/testyuv.c $(srcdir)/testyuv_cvt.c
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)

torturethread$(EXE): $(srcdir)/torturethread.c
Expand Down

0 comments on commit 4764f7a

Please sign in to comment.