parent
debe99d76e
commit
17c402f708
3 changed files with 28 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||||||
|
#include <stdio.h> |
||||||
|
#include <stdlib.h> |
||||||
|
|
||||||
|
int main(void) { |
||||||
|
#ifdef NDEBUG |
||||||
|
printf("NDEBUG=1\n"); |
||||||
|
#else |
||||||
|
printf("NDEBUG=0\n"); |
||||||
|
#endif |
||||||
|
return 0; |
||||||
|
} |
@ -0,0 +1,3 @@ |
|||||||
|
project('ndebug enabled', 'c') |
||||||
|
|
||||||
|
executable('main', 'main.c') |
Loading…
Reference in new issue