forked from qt-creator/qt-creator
CMake 3.16 is available on the major Linux distributions nowadays, so we can get rid of some workarounds. Change-Id: I32500375748f33c3e40fbd7a08824d823f817a8f Reviewed-by: Cristian Adam <cristian.adam@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
8 lines
217 B
CMake
8 lines
217 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(test_project)
|
|
|
|
add_executable(test_exe test.cc test.qml)
|
|
|
|
file(GENERATE OUTPUT "${CMAKE_BINARY_DIR}/qml_module_mappings/test_exe" CONTENT "QtQuick.Controls=MyControls\n")
|
|
|