qmake changed to *= for all INCLUDEPATH

Changed all to INCLUDEPATH *= $$PWD.
This commit is contained in:
silverqx
2023-09-06 15:41:16 +02:00
parent ffd3817380
commit 60b4fbc914
9 changed files with 10 additions and 10 deletions

View File

@@ -819,7 +819,7 @@ Configuring by the `.qmake.conf` and `.env` files has one big advantage, which i
Create `database/migrations.pri` file and paste the following code.
```qmake
INCLUDEPATH += $$PWD
INCLUDEPATH *= $$PWD
HEADERS += \
$$PWD/migrations/2014_10_12_000000_create_posts_table.hpp \
@@ -830,7 +830,7 @@ HEADERS += \
Create `database/seeders.pri` file and paste the following code.
```qmake
INCLUDEPATH += $$PWD
INCLUDEPATH *= $$PWD
HEADERS += \
$$PWD/seeders/databaseseeder.hpp \