docs updated build folders to 6_5_2

This commit is contained in:
silverqx
2023-08-09 19:45:00 +02:00
parent d98e10f4ec
commit e25e36a3df
3 changed files with 8 additions and 8 deletions

View File

@@ -531,7 +531,7 @@ Create `.qmake.conf` in the `HelloWorld` project root folder with the following
```qmake
TINY_MAIN_DIR = $$clean_path($$PWD/../../TinyORM)
# Name of this qmake variable is crucial
TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyOrm-builds-qmake/build-TinyOrm-Desktop_Qt_6_3_1_MSVC2019_64bit-Debug)
TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyOrm-builds-qmake/build-TinyOrm-Desktop_Qt_6_5_2_MSVC2019_64bit-Debug)
# vcpkg - range-v3
TINY_VCPKG_INSTALLED = $$clean_path($$PWD/../../../vcpkg/installed)
```

View File

@@ -705,7 +705,7 @@ Create `.qmake.conf` in the `tom` application root folder with the following con
```qmake
TINY_MAIN_DIR = $$clean_path($$PWD/../../TinyORM)
# Name of this qmake variable is crucial
TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyOrm-builds-qmake/build-TinyOrm-Desktop_Qt_6_3_1_MSVC2019_64bit-Debug)
TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyOrm-builds-qmake/build-TinyOrm-Desktop_Qt_6_5_2_MSVC2019_64bit-Debug)
# vcpkg - range-v3 and tabulate
TINY_VCPKG_INSTALLED = $$clean_path($$PWD/../../../vcpkg/installed)

View File

@@ -138,10 +138,10 @@ You can set the root and application folder paths in the form below and they wil
│ │ ├── migrations.pri
│ │ └── seeders.pri
│ ├── tom-builds-cmake/
│ │ └── build-TinyOrm-Desktop_Qt_6_3_1_MSVC2019_64bit-Debug/
│ │ └── build-TinyOrm-Desktop_Qt_6_5_2_MSVC2019_64bit-Debug/
│ └── tom-builds-qmake/
│ ├── build-TinyOrm-Desktop_Qt_5_15_3_MSYS2_UCRT64_64bit-Release/
│ └── build-TinyOrm-Desktop_Qt_6_3_1_MSVC2019_64bit-Debug/
│ └── build-TinyOrm-Desktop_Qt_6_5_2_MSVC2019_64bit-Debug/
├── tmp/
└── vcpkg/
```
@@ -184,10 +184,10 @@ You can set the root and application folder paths in the form below and they wil
│ │ ├── migrations.pri
│ │ └── seeders.pri
│ ├── tom-builds-cmake/
│ │ └── build-TinyOrm-Desktop_Qt_6_3_1_clang14_64bit_ccache-Debug/
│ │ └── build-TinyOrm-Desktop_Qt_6_5_2_clang14_64bit_ccache-Debug/
│ └── tom-builds-qmake/
│ ├── build-TinyOrm-Desktop_Qt_6_3_1_GCC_64bit-Debug/
│ └── build-TinyOrm-Desktop_Qt_6_3_1_clang14_64bit_ccache-Release/
│ ├── build-TinyOrm-Desktop_Qt_6_5_2_GCC_64bit-Debug/
│ └── build-TinyOrm-Desktop_Qt_6_5_2_clang14_64bit_ccache-Release/
├── tmp/
└── vcpkg/
```
@@ -647,7 +647,7 @@ The [`TinyOrm.pri`](https://github.com/silverqx/TinyORM/blob/main/qmake/TinyOrm.
```qmake
TINY_MAIN_DIR = $$clean_path(<your_path>)
# Name of this qmake variable is crucial
TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyOrm-builds-qmake/build-TinyOrm-Desktop_Qt_6_3_1_MSVC2019_64bit-Debug)
TINYORM_BUILD_TREE = $$quote($$TINY_MAIN_DIR/TinyOrm-builds-qmake/build-TinyOrm-Desktop_Qt_6_5_2_MSVC2019_64bit-Debug)
include($$TINY_MAIN_DIR/TinyORM/qmake/TinyOrm.pri)
```