1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00

Add debug qrc version when running RelWithDebInfo

This is so we browser qrc files in QtCreator project
tree
This commit is contained in:
Elias Steurer 2020-08-30 17:23:08 +02:00
parent 31d49e8b40
commit 1d11f6970c
3 changed files with 6 additions and 7 deletions

View File

@ -2,6 +2,9 @@ cmake_minimum_required(VERSION 3.17 )
project(ScreenPlay LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOMOC ON)
@ -70,10 +73,8 @@ set(l10n
set_source_files_properties(${l10n} PROPERTIES OUTPUT_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/translations")
qt5_add_translation(qmFiles ${l10n})
# For development purposes to display source files in QtCreator
#qt5_add_resources(qml qml.qrc resources.qrc)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
qt5_add_resources(qml qml.qrc resources.qrc)
else()
qtquick_compiler_add_resources(qml qml.qrc resources.qrc)

View File

@ -45,10 +45,8 @@ set( src
set( headers
src/basewindow.h)
# For development purposes to display source files in QtCreator
#qt5_add_resources(resources SPWResources.qrc)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
set(resources SPWResources.qrc)
else()
qtquick_compiler_add_resources(resources SPWResources.qrc )

View File

@ -20,7 +20,7 @@ set(src main.cpp
set(headers
src/widgetwindow.h)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
set(resources SPWidgetResources.qrc)
else()
qtquick_compiler_add_resources(resources SPWidgetResources.qrc )