Pelles C forum

Pelles C => General discussions => Topic started by: Vidlius on January 29, 2026, 02:49:35 PM

Title: can't find headers
Post by: Vidlius on January 29, 2026, 02:49:35 PM
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.

Title: Re: can't find headers
Post by: TimoVJL on January 29, 2026, 04:09:48 PM
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\