mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 20:23:41 +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;
|
||
|
}
|