added debug profile

This commit is contained in:
Florent Leclercq 2023-03-17 16:31:02 +01:00
parent c2dadf93eb
commit 3e21336c78
4 changed files with 10 additions and 1 deletions

2
.gitignore vendored
View file

@ -1 +1 @@
build/
build*/

View file

@ -13,6 +13,7 @@ conan profile detect --force
* Install dependencies with conan
```
conan install . --output-folder=build --build=missing
conan install . --output-folder=build_debug --build=missing --profile=debug
```
* Build with meson
```

2
debug Normal file
View file

@ -0,0 +1,2 @@
[options]
build_type=Debug

View file

@ -9,5 +9,11 @@ int main(int argc, char **argv) {
return 1;
}
printf("This is project %s.\n", PROJECT_NAME);
#ifdef NDEBUG
printf("Release configuration!\n");
#else
printf("Debug configuration!\n");
#endif
return 0;
}