mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-14 06:29:02 +08:00
8 lines
131 B
C++
8 lines
131 B
C++
#include <OpenImageIO/imageio.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
auto inp = OIIO::ImageInput::open("none");
|
|
return inp ? 0 : 1;
|
|
}
|