News:

Download Pelles C here: http://www.pellesc.se

Main Menu

can't find headers

Started by Vidlius, Yesterday at 02:49:35 PM

Previous topic - Next topic

Vidlius

I have to be doing something stupid, can anyone help me out here. Trying to incorporate khronos headers in my project and my project can't seem to find the headers.


TimoVJL

Add local dir, that have CL subfolder to INCLUDE.
Like .

My test was#include <stdio.h>
#include <stdint.h>

#include "CL/cl.h"

int main( void )
{
  printf("cl.h standalone test PASSED.\n");
  return 0;
}

.\test.c
.\CL\
May the source be with you