mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-12 11:20:46 +02:00
15 lines
356 B
CMake
15 lines
356 B
CMake
set(LIBMGBA_ONLY ON)
|
|
set(USE_LZMA ON)
|
|
add_subdirectory(mgba EXCLUDE_FROM_ALL)
|
|
dolphin_disable_warnings_msvc(mgba)
|
|
|
|
if(NOT MSVC)
|
|
target_compile_options(mgba PRIVATE -Wno-unused-parameter -Wno-unused-result -Wno-unused-variable)
|
|
endif()
|
|
|
|
if(ANDROID)
|
|
target_compile_definitions(mgba PRIVATE -Dfutimes=futimens)
|
|
endif()
|
|
|
|
add_library(mGBA::mgba ALIAS mgba)
|