diff options
| author | Iikka Eklund <iikka.eklund@qt.io> | 2020-10-16 09:38:01 +0300 |
|---|---|---|
| committer | Iikka Eklund <iikka.eklund@qt.io> | 2020-10-21 10:36:28 +0000 |
| commit | 4548bab23559dd557794e55a5e7d4ce8db250a65 (patch) | |
| tree | afe7057152756690ba64a76ffe05a590e86ffb95 | |
| parent | e08d9fcfad2455fbf681454703f7854abadbce75 (diff) | |
Add initial conan profiles for Qt 6.0.0 desktop targets
The profile files contain %QT_VERSION_PATH% tag which is meant
to be patched by Qt Installer. The resulting QT_PATH will point to the
installation path of the selected essentials binary package.
Qt Add-on conan recipes rely on finding the QT_PATH from env to
locate "bin/qt-cmake".
Change-Id: Ib8273e25786adb9930da5b3ce8a68a20c29e21be
Reviewed-by: Antti Kokko <antti.kokko@qt.io>
| -rw-r--r-- | profiles/qt/linux/6.0.0/qt-6.0.0-linux | 14 | ||||
| -rw-r--r-- | profiles/qt/macos/6.0.0/qt-6.0.0-macx-clang | 12 | ||||
| -rw-r--r-- | profiles/qt/windows/6.0.0/qt-6.0.0-mingw81_64 | 16 | ||||
| -rw-r--r-- | profiles/qt/windows/6.0.0/qt-6.0.0-msvc2019_64 | 11 |
4 files changed, 53 insertions, 0 deletions
diff --git a/profiles/qt/linux/6.0.0/qt-6.0.0-linux b/profiles/qt/linux/6.0.0/qt-6.0.0-linux new file mode 100644 index 0000000..5d9bab8 --- /dev/null +++ b/profiles/qt/linux/6.0.0/qt-6.0.0-linux @@ -0,0 +1,14 @@ +[settings] + os=Linux + os_build=Linux + arch=x86_64 + arch_build=x86_64 + compiler=gcc + compiler.version=7.5 + compiler.libcxx=libstdc++11 + build_type=Release +[options] +[build_requires] +[env] +QT_PATH=%QT_VERSION_PATH%/gcc_64 + diff --git a/profiles/qt/macos/6.0.0/qt-6.0.0-macx-clang b/profiles/qt/macos/6.0.0/qt-6.0.0-macx-clang new file mode 100644 index 0000000..09e30a3 --- /dev/null +++ b/profiles/qt/macos/6.0.0/qt-6.0.0-macx-clang @@ -0,0 +1,12 @@ +[settings] + os=Macos + arch=x86_64 + compiler=apple-clang + compiler.version=11 + compiler.libcxx=libc++ + build_type=Release +[options] +[build_requires] +[env] +QT_PATH=%QT_VERSION_PATH%/clang_64 + diff --git a/profiles/qt/windows/6.0.0/qt-6.0.0-mingw81_64 b/profiles/qt/windows/6.0.0/qt-6.0.0-mingw81_64 new file mode 100644 index 0000000..1881523 --- /dev/null +++ b/profiles/qt/windows/6.0.0/qt-6.0.0-mingw81_64 @@ -0,0 +1,16 @@ +[settings] + os=Windows + os_build=Windows + arch=x86_64 + arch_build=x86_64 + compiler=gcc + compiler.version=5 + compiler.libcxx=libstdc++11 + build_type=Release +[options] +[build_requires] +[env] +CC=gcc +CXX=g++ +QT_PATH=%QT_VERSION_PATH%/mingw81_64 + diff --git a/profiles/qt/windows/6.0.0/qt-6.0.0-msvc2019_64 b/profiles/qt/windows/6.0.0/qt-6.0.0-msvc2019_64 new file mode 100644 index 0000000..90177fb --- /dev/null +++ b/profiles/qt/windows/6.0.0/qt-6.0.0-msvc2019_64 @@ -0,0 +1,11 @@ +[settings] + os=Windows + arch=x86_64 + compiler=Visual Studio + compiler.version=16 + build_type=Release +[options] +[build_requires] +[env] +QT_PATH=%QT_VERSION_PATH%/msvc2019_64 + |
