cmake/ci: allow to set tag/tag version from ci

This commit is contained in:
DH 2025-04-09 03:05:11 +03:00
parent 16e11b1f8c
commit 938fd9a796
2 changed files with 12 additions and 3 deletions

View file

@ -120,9 +120,18 @@ endif()
add_subdirectory(3rdparty EXCLUDE_FROM_ALL)
add_subdirectory(rx EXCLUDE_FROM_ALL)
if (NOT RX_TAG)
set(RX_TAG 0)
endif()
if (NOT RX_TAG_VERSION)
set(RX_TAG_VERSION 0)
endif()
target_compile_definitions(rx PRIVATE
RX_TAG=0
RX_TAG_VERSION=0
RX_TAG=${RX_TAG}
RX_TAG_VERSION=${RX_TAG_VERSION}
)
if (WITH_RPCSX)

View file

@ -100,7 +100,7 @@ namespace rsx
add_element(text_stack);
}
void save_dialog::save_dialog_entry::set_selected(bool selected)
void save_dialog::save_dialog_entry::set_selected([[maybe_unused]] bool selected)
{
#ifndef ANDROID
if (m_image)