Nicholas S. Zivkovic
Nicholas S. Zivkovic
I had this same issue when building on windows with powershell, @eldahine's solution has fixed it for me. I've made are the change on a branch from my fork, I...
I think this could be achieved by passing the define with the [`-U` flag](https://gcc.gnu.org/onlinedocs/gcc/Preprocessor-Options.html#index-U) to undefine it, at least this is available with gcc. Not sure how easy this would...
Ah yes of course I see, that's dumb of me, I was thinking from the angle of disabling flags that were added with `-D` (if for instance using a raylib...
`config.h` ```c #define OPTION ``` `custom.h` ```c #undef OPTION ``` `main.c` ```c #include #include "config.h" #include "custom.h" int main(void) { #ifdef OPTION puts("option enabled"); #else puts("option disabled"); #endif } ```...
@orcmid I might be missing something as I've not had to do this setup, I came to this post through zig. But, could I not have a custom config that...