Files
CMake/Tests/FindDevIL/Test/main.c
2021-03-18 10:42:02 -04:00

11 lines
121 B
C

#include <IL/il.h>
int main()
{
// Test 1 requires to link to the library.
ilInit();
ilShutDown();
return 0;
}