From f61caa6b1a13a8426f131686f0a71ceba535f70b Mon Sep 17 00:00:00 2001 From: EndrII Date: Mon, 12 Jun 2023 12:46:44 +0200 Subject: [PATCH] remove deprecated functions --- QtUtils.cmake | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/QtUtils.cmake b/QtUtils.cmake index 301fa4a..66de3ef 100644 --- a/QtUtils.cmake +++ b/QtUtils.cmake @@ -93,19 +93,3 @@ function(configure_file_in name file) endfunction() - -# This function do convert shader files to prepared for qt shaders -# Arguments : -# name - it is name of the target for that will be configuret selected file. -# file - it is file that will be configured -# see https://doc.qt.io/qt-6/qtshadertools-index.html -function(configure_qt_shader name file) - - - find_program(QSB qsb) - execute_process(COMMAND ${QSB} "-o" "${file}.qsb" "${file}" - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - COMMAND_ERROR_IS_FATAL ANY) - - -endfunction()