DevSolar / pdclib

The Public Domain C Library
https://pdclib.rootdirectory.de
Creative Commons Zero v1.0 Universal
224 stars 41 forks source link

Can't find "pdclib/_PDCLIB_config.h" #15

Closed ZhouJiatai closed 3 years ago

ZhouJiatai commented 3 years ago

I create a C source in this repo "\include" folder and compile it:

#include ".\stdio.h"
int main()
{
    printf("Hello, PDCLib!");
    return 0;
}

And Compiler (MinGW-w64) says,

E:\source\repos\pdclib\include\pdclib_PDCLIB_int.h|19|fatal error: pdclib/_PDCLIB_config.h: No such file or directory|

I see "_PDCLIB_int.h", in Line 19: #include "pdclib/_PDCLIB_config.h" I can't find "pdclib/_PDCLIB_config.h" in this repo. Where is "pdclib/_PDCLIB_config.h"?

DevSolar commented 3 years ago

This is not how PDCLib is supposed to be used. Please refer to Readme.txt and Quickstart.txt.