mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-20 15:40:30 +01:00
cmake/ci: allow to set tag/tag version from ci
This commit is contained in:
parent
16e11b1f8c
commit
938fd9a796
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue