2021-07-04 10:41:46 +00:00
|
|
|
set(LIBMGBA_ONLY ON)
|
|
|
|
set(USE_LZMA ON)
|
|
|
|
add_subdirectory(mgba EXCLUDE_FROM_ALL)
|
2024-03-19 06:08:54 +00:00
|
|
|
dolphin_disable_warnings(mgba)
|
2021-07-04 10:41:46 +00:00
|
|
|
|
2022-07-24 05:10:10 +00:00
|
|
|
target_compile_definitions(mgba PUBLIC HAVE_CRC32)
|
|
|
|
target_link_libraries(mgba ZLIB::ZLIB)
|
|
|
|
|
2021-07-04 10:41:46 +00:00
|
|
|
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)
|