mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-21 05:09:46 -06:00

* use shm_open() instead of memfd_create() on macOS malloc.h isn't a header on macOS * Change OpenGL headers + create ifdef for DO_PROCLIST macOS seems to already have the OpenGL functions defined, without the ifdef, it gives "ambiguous references" errors. * macOS doesn't have ->gregs in uc_mcontext and it doesn't have REG_RIP either https://github.com/gperftools/gperftools/blob/master/m4/pc_from_ucontext.m4 * use getpid() to make memory file name unique * #ifndef __APPLE__ for AF_PACKET and linux/if_packet.h * Add include and link directories for macOS and link the OpenGL framework * Add macOS CI * Use newly added libslirp package from Homebrew https://github.com/Homebrew/homebrew-core/pull/63412 * Use Apple's Clang instead of GNU GCC on macOS * Add macOS build instructions to README * Try to fix macOS undefined symbol * snprintf doesn't take null terminator into account * Map new memory on macOS for JIT * Only use gcc-ar if using GNU Compiler * re-add fastmem code - whoops! * Fix style issue - use camelCase not snake_case * Set Minimum macOS version * Switch Minimum OS X version to 10.9 * Add macOS libpcap library name * fix memory leak * Fix binding keys in macOS * Allow getting MAC address on macOS melonDS on Linux uses AF_PACKET, which doesn't exist on macOS. Instead, this commit uses AF_LINK on macOS to get the MAC address. * Remove unneeded macOS CI dependencies * Build melonDS app bundle on macOS Now it is no longer required to install the libraries on macOS, they come with the app bundle. * fix macOS CI not being able to find macdeployqt * copy melonDS.app with recursive because it's a folder * Disable fastmem checkbox on macOS * Disable fastmem by default in config * forgot a semicolon * Don't bundle libraries, causes issues on macOS <10.15 * Update README + allow finding version in Finder on macOS * Make sure fastmem checkbox stays uncheckable
119 lines
4.3 KiB
CMake
119 lines
4.3 KiB
CMake
project(qt_sdl)
|
|
|
|
SET(SOURCES_QT_SDL
|
|
main.cpp
|
|
main_shaders.h
|
|
CheatsDialog.cpp
|
|
EmuSettingsDialog.cpp
|
|
InputConfigDialog.cpp
|
|
VideoSettingsDialog.cpp
|
|
AudioSettingsDialog.cpp
|
|
WifiSettingsDialog.cpp
|
|
Input.cpp
|
|
LAN_PCap.cpp
|
|
LAN_Socket.cpp
|
|
OSD.cpp
|
|
OSD_shaders.h
|
|
font.h
|
|
Platform.cpp
|
|
PlatformConfig.cpp
|
|
|
|
../Util_ROM.cpp
|
|
../Util_Video.cpp
|
|
../Util_Audio.cpp
|
|
../FrontendUtil.h
|
|
../mic_blow.h
|
|
|
|
../../../melon.qrc
|
|
)
|
|
|
|
if (WIN32)
|
|
set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -i <SOURCE> -o <OBJECT>")
|
|
endif()
|
|
|
|
if (BUILD_STATIC AND QT5_STATIC_DIR)
|
|
set(QT5_STATIC_BASE ${QT5_STATIC_DIR}/lib/cmake/Qt5)
|
|
set(Qt5_DIR ${QT5_STATIC_BASE})
|
|
set(Qt5Core_DIR ${QT5_STATIC_BASE}Core)
|
|
set(Qt5Gui_DIR ${QT5_STATIC_BASE}Gui)
|
|
set(Qt5Widgets_DIR ${QT5_STATIC_BASE}Widgets)
|
|
endif()
|
|
|
|
find_package(Qt5 COMPONENTS Core Gui Widgets REQUIRED)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTOUIC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
|
|
find_package(Threads REQUIRED)
|
|
find_package(PkgConfig REQUIRED)
|
|
find_package(Iconv REQUIRED)
|
|
pkg_check_modules(SDL2 REQUIRED sdl2)
|
|
pkg_check_modules(SLIRP REQUIRED slirp)
|
|
|
|
if (WIN32 AND (CMAKE_BUILD_TYPE STREQUAL Release))
|
|
add_executable(melonDS WIN32 ${SOURCES_QT_SDL})
|
|
else()
|
|
add_executable(melonDS ${SOURCES_QT_SDL})
|
|
endif()
|
|
|
|
target_link_libraries(melonDS ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
target_include_directories(melonDS PRIVATE ${SDL2_INCLUDE_DIRS})
|
|
target_include_directories(melonDS PRIVATE ${SLIRP_INCLUDE_DIRS})
|
|
target_include_directories(melonDS PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
target_include_directories(melonDS PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/..")
|
|
target_include_directories(melonDS PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/../..")
|
|
target_link_libraries(melonDS core)
|
|
|
|
if (BUILD_STATIC)
|
|
target_link_libraries(melonDS -static ${SDL2_STATIC_LIBRARIES} ${SLIRP_STATIC_LIBRARIES})
|
|
else()
|
|
target_link_libraries(melonDS ${SDL2_LIBRARIES} ${SLIRP_LIBRARIES})
|
|
endif()
|
|
|
|
if (NOT Iconv_IS_BUILT_IN)
|
|
target_link_libraries(melonDS iconv)
|
|
endif()
|
|
|
|
if (UNIX)
|
|
option(PORTABLE "Make a portable build that looks for its configuration in the current directory" OFF)
|
|
target_link_libraries(melonDS dl Qt5::Core Qt5::Gui Qt5::Widgets)
|
|
elseif (WIN32)
|
|
option(PORTABLE "Make a portable build that looks for its configuration in the current directory" ON)
|
|
target_sources(melonDS PUBLIC "${CMAKE_SOURCE_DIR}/melon.rc")
|
|
|
|
target_link_libraries(melonDS comctl32 d2d1 dwrite uxtheme ws2_32 iphlpapi gdi32)
|
|
if (BUILD_STATIC)
|
|
target_link_libraries(melonDS imm32 winmm version setupapi -static Qt5::Core Qt5::Gui Qt5::Widgets z zstd)
|
|
else()
|
|
target_link_libraries(melonDS Qt5::Core Qt5::Gui Qt5::Widgets)
|
|
endif()
|
|
endif()
|
|
|
|
if (PORTABLE)
|
|
add_definitions(-DPORTABLE)
|
|
endif()
|
|
|
|
if (APPLE)
|
|
set_target_properties(melonDS PROPERTIES
|
|
MACOSX_BUNDLE true
|
|
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_SOURCE_DIR}/melonDS.plist
|
|
OUTPUT_NAME melonDS
|
|
)
|
|
|
|
# Copy icon into the bundle
|
|
target_sources(melonDS PRIVATE "${CMAKE_SOURCE_DIR}/melonDS.icns")
|
|
set_source_files_properties("${CMAKE_SOURCE_DIR}/melonDS.icns" PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
|
|
|
endif()
|
|
|
|
install(FILES ../../../net.kuribo64.melonDS.desktop DESTINATION ${CMAKE_INSTALL_PREFIX}/share/applications)
|
|
install(FILES ../../../icon/melon_16x16.png DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/16x16/apps RENAME net.kuribo64.melonDS.png)
|
|
install(FILES ../../../icon/melon_32x32.png DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/32x32/apps RENAME net.kuribo64.melonDS.png)
|
|
install(FILES ../../../icon/melon_48x48.png DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/48x48/apps RENAME net.kuribo64.melonDS.png)
|
|
install(FILES ../../../icon/melon_64x64.png DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/64x64/apps RENAME net.kuribo64.melonDS.png)
|
|
install(FILES ../../../icon/melon_128x128.png DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/128x128/apps RENAME net.kuribo64.melonDS.png)
|
|
install(FILES ../../../icon/melon_256x256.png DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/256x256/apps RENAME net.kuribo64.melonDS.png)
|
|
install(TARGETS melonDS BUNDLE DESTINATION ${CMAKE_BINARY_DIR} RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|