Files
conan-build/recipes/libvpx/all/test_package/test_package.c
2024-12-25 17:47:28 +03:00

10 lines
134 B
C

#include <vpx/vpx_codec.h>
#include <stdio.h>
int main()
{
printf("vpx version %s\n", vpx_codec_version_str());
return 0;
}