Files
CMake/Tests/FindDevIL/Test/main.c
2023-10-26 09:20:45 -04:00

11 lines
125 B
C

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