added debug profile
This commit is contained in:
parent
c2dadf93eb
commit
3e21336c78
4 changed files with 10 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1 @@
|
||||||
build/
|
build*/
|
||||||
|
|
|
@ -13,6 +13,7 @@ conan profile detect --force
|
||||||
* Install dependencies with conan
|
* Install dependencies with conan
|
||||||
```
|
```
|
||||||
conan install . --output-folder=build --build=missing
|
conan install . --output-folder=build --build=missing
|
||||||
|
conan install . --output-folder=build_debug --build=missing --profile=debug
|
||||||
```
|
```
|
||||||
* Build with meson
|
* Build with meson
|
||||||
```
|
```
|
||||||
|
|
2
debug
Normal file
2
debug
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[options]
|
||||||
|
build_type=Debug
|
|
@ -9,5 +9,11 @@ int main(int argc, char **argv) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
printf("This is project %s.\n", PROJECT_NAME);
|
printf("This is project %s.\n", PROJECT_NAME);
|
||||||
|
|
||||||
|
#ifdef NDEBUG
|
||||||
|
printf("Release configuration!\n");
|
||||||
|
#else
|
||||||
|
printf("Debug configuration!\n");
|
||||||
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue