This commit is contained in:
Shaun Reed 2023-04-09 10:15:30 -04:00
parent cd641072ab
commit a777949153
3 changed files with 10 additions and 4 deletions

View File

@ -64,7 +64,7 @@ jobs:
- name: Install Qtk Application
shell: bash
run: cmake --install build/ --config Release --component qtk_gui
run: cmake --install build/ --config Release --component qtk_gui --prefix=$(pwd)/install
- name: Package Qtk Application
shell: bash

View File

@ -67,10 +67,12 @@ option(
OFF
)
if(NOT QTK_DEBUG)
set(CMAKE_BUILD_TYPE Release)
else()
if(QTK_DEBUG OR CMAKE_BUILD_TYPE MATCHES "[Dd][Ee][Bb][Uu][Gg]")
set(QTK_DEBUG ON)
set(CMAKE_BUILD_TYPE Debug)
else()
set(QTK_DEBUG OFF)
set(CMAKE_BUILD_TYPE Release)
endif()
# This should be set to your Qt6 installation directory.

View File

@ -6,4 +6,8 @@ set_and_check(QTK_EXECUTABLE "${PACKAGE_PREFIX_DIR}/bin/qtk_gui")
set_and_check(QTK_INCLUDE_DIR "${PACKAGE_PREFIX_DIR}/include")
set_and_check(QTK_LIBRARIES "${PACKAGE_PREFIX_DIR}/lib")
set_and_check(Qtk_EXECUTABLE "${PACKAGE_PREFIX_DIR}/bin/qtk_gui")
set_and_check(Qtk_INCLUDE_DIR "${PACKAGE_PREFIX_DIR}/include")
set_and_check(Qtk_LIBRARIES "${PACKAGE_PREFIX_DIR}/lib")
check_required_components(Qtk)