cgal/Installation/test/Installation/link_to_CGAL_ImageIO.cpp

12 lines
234 B
C++

// Use something defined not in headers but in the CGAL library to test that is was indeed properly built and linked to,
#include <CGAL/ImageIO.h>
int main()
{
volatile _image* i = _initImage();
return (i != 0) ? 0 : 1;
}