C and C++ web framework.
http://rapida.vilor.one/docs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
439 B
24 lines
439 B
CompileFlags: |
|
Add: |
|
- -Wall |
|
- -pedantic |
|
- -I../include |
|
- -DMT_ENABLED |
|
- -DNTHREADS=8 |
|
- -DEXTENSIONS_INJA, |
|
- -DDIST_PATH="/var/www/html" |
|
|
|
--- |
|
# Specific C sources |
|
If: |
|
PathMatch: [.*\.c, .*\.h] |
|
CompileFlags: |
|
Add: [-std=gnu99] |
|
|
|
|
|
--- |
|
# Fragment specific to C++ source files |
|
If: |
|
PathExclude: [.*\.c, .*\.h] |
|
CompileFlags: |
|
Add: [-std=c++17, `pkg-config --cflags catch2`]
|
|
|