2021-07-04 04:41:46 -06:00
|
|
|
set(LIBMGBA_ONLY ON)
|
|
|
|
set(USE_LZMA ON)
|
|
|
|
add_subdirectory(mgba EXCLUDE_FROM_ALL)
|
2022-05-21 07:09:05 -06:00
|
|
|
dolphin_disable_warnings_msvc(mgba)
|
2021-07-04 04:41:46 -06:00
|
|
|
|
2022-07-23 23:10:10 -06:00
|
|
|
target_compile_definitions(mgba PUBLIC HAVE_CRC32)
|
|
|
|
target_link_libraries(mgba ZLIB::ZLIB)
|
|
|
|
|
2021-07-04 04:41:46 -06: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)
|