libragephoto: add option to enable ABI wrapper

This commit is contained in:
Syping 2023-02-20 15:22:30 +01:00
parent 4dceb52fe7
commit dca2e9fe59
2 changed files with 14 additions and 1 deletions

View file

@ -219,6 +219,14 @@ if(FLATPAK_BUILD)
)
endif()
option(RAGEPHOTO_ABI_WRAPPER "Use libragephoto's ABI wrapper" OFF)
if(RAGEPHOTO_ABI_WRAPPER)
set(RAGEPHOTO_C_API ON CACHE BOOL "Build libragephoto with C API support" FORCE)
list(APPEND GTA5VIEW_DEFINES
-DRAGEPHOTO_USE_ABI_WRAPPER
)
endif()
option(WITH_DONATE "Donate menu option and donation dialog" OFF)
if(WITH_DONATE)
set(DONATE_ADDRESSES "" CACHE STRING "Donation addresses")