From 2895f3ffaa632f129232f70564a16f202ead0bda Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 21 Jun 2019 14:58:52 +0200 Subject: Generate a toolchain and convenience cmake wrapper This gets us a step into the direction of convenience that qmake offered: * QtBase is configured with a long command line (especially when cross-compiling) * Afterwards application developers (or other module builds) can just use qmake && make By generating a toolchain file we can capture vcpkg and toolchain chain-loading and a shell script can take care of providing the prefix path. Change-Id: Ided81f5432cab862306f2bea86cfe8e56adf71b0 Reviewed-by: Alexandru Croitor --- bin/qt-cmake.in | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 bin/qt-cmake.in (limited to 'bin/qt-cmake.in') diff --git a/bin/qt-cmake.in b/bin/qt-cmake.in new file mode 100755 index 0000000000..efc8a850be --- /dev/null +++ b/bin/qt-cmake.in @@ -0,0 +1,3 @@ +#!/bin/sh + +exec @CMAKE_COMMAND@ -DCMAKE_TOOLCHAIN_FILE=@CMAKE_INSTALL_PREFIX@/@__GlobalConfig_install_dir@/qt.toolchain.cmake $* -- cgit v1.2.1