mirror of https://github.com/snes9xgit/snes9x.git
Gtk: Add CMake as build option.
This commit is contained in:
parent
17cb084df0
commit
a4cf41e879
|
@ -0,0 +1,299 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
project(snes9x-gtk VERSION 1.61)
|
||||
|
||||
option(USE_OPENGL "Build support for OpenGL" ON)
|
||||
option(USE_SLANG "Build support for slang-type shaders" ON)
|
||||
option(USE_XV "Build support for XVideo output" ON)
|
||||
option(USE_PORTAUDIO "Build PortAudio sound driver" ON)
|
||||
option(USE_ALSA "Build ALSA sound driver" ON)
|
||||
option(USE_PULSEAUDIO "Use PulseAudio" ON)
|
||||
option(DEBUGGER "Enable Snes9x Debugger" ON)
|
||||
option(USE_HQ2X "Build the HQ2x family of filters" ON)
|
||||
option(USE_XBRZ "Build the XBRZ family of filters" ON)
|
||||
option(USE_SYSTEMZIP "Force use of system minizip" ON)
|
||||
option(USE_WAYLAND "Build support for Wayland" ON)
|
||||
option(DANGEROUS_HACKS "Allow dangerous hacks to be used" ON)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
add_compile_options(-Wall -W -Wno-unused-parameter)
|
||||
add_compile_definitions(HAVE_LIBPNG
|
||||
ZLIB SNES9X_GTK
|
||||
NETPLAY_SUPPORT
|
||||
UNZIP_SUPPORT
|
||||
HAVE_MKSTEMP
|
||||
HAVE_STRINGS_H
|
||||
HAVE_STDINT_H
|
||||
RIGHTSHIFT_IS_SAR
|
||||
"GETTEXT_PACKAGE=\"snes9x-gtk\""
|
||||
"DATADIR=\"/usr/share/data\""
|
||||
"SNES9XLOCALEDIR=\"/usr/share/locale\"")
|
||||
set(INCLUDES ../apu/bapu ../ src)
|
||||
set(SOURCES)
|
||||
set(ARGS)
|
||||
set(LIBS)
|
||||
set(DEFINES)
|
||||
|
||||
find_package(PkgConfig REQUIRED)
|
||||
pkg_check_modules(SDL2 REQUIRED sdl2)
|
||||
pkg_check_modules(GTK REQUIRED gtkmm-3.0 gthread-2.0 libpng)
|
||||
pkg_check_modules(XRANDR REQUIRED xrandr)
|
||||
find_library(X11 X11 REQUIRED)
|
||||
find_library(XEXT Xext REQUIRED)
|
||||
find_library(DL dl REQUIRED)
|
||||
list(APPEND ARGS ${SDL2_CFLAGS} ${GTK_CFLAGS} ${XRANDR_CFLAGS})
|
||||
list(APPEND LIBS ${X11} ${XEXT} ${DL} ${SDL2_LIBRARIES} ${GTK_LIBRARIES} ${XRANDR_LIBRARIES})
|
||||
|
||||
if(USE_OPENGL)
|
||||
pkg_check_modules(EPOXY REQUIRED epoxy)
|
||||
list(APPEND ARGS ${EPOXY_CFLAGS})
|
||||
list(APPEND LIBS ${EPOXY_LIBRARIES})
|
||||
list(APPEND SOURCES src/gtk_display_driver_opengl.cpp
|
||||
src/gtk_glx_context.cpp
|
||||
../shaders/glsl.cpp
|
||||
../shaders/shader_helpers.cpp
|
||||
src/gtk_shader_parameters.cpp)
|
||||
list(APPEND DEFINES "USE_OPENGL")
|
||||
endif()
|
||||
|
||||
if(USE_SLANG)
|
||||
list(APPEND SOURCES ../shaders/slang.cpp)
|
||||
list(APPEND INCLUDES ../external/glslang)
|
||||
|
||||
set(SPIRV_CROSS_EXCEPTIONS_TO_ASSERTIONS CACHE BOOL ON)
|
||||
set(BUILD_TESTING CACHE BOOL OFF)
|
||||
add_subdirectory("../external/glslang" "glslang" EXCLUDE_FROM_ALL)
|
||||
add_subdirectory("../external/SPIRV-Cross" "SPIRV-Cross" EXCLUDE_FROM_ALL)
|
||||
list(APPEND LIBS glslang
|
||||
OGLCompiler
|
||||
HLSL
|
||||
OSDependent
|
||||
SPIRV
|
||||
glslang-default-resource-limits)
|
||||
list(APPEND LIBS spirv-cross-core
|
||||
spirv-cross-glsl
|
||||
spirv-cross-reflect
|
||||
spirv-cross-cpp)
|
||||
list(APPEND DEFINES "USE_SLANG")
|
||||
list(APPEND INCLUDES "../external/glslang")
|
||||
endif()
|
||||
|
||||
if(USE_WAYLAND)
|
||||
pkg_check_modules(WAYLAND REQUIRED wayland-client wayland-egl)
|
||||
list(APPEND DEFINES "USE_WAYLAND")
|
||||
list(APPEND SOURCES src/gtk_wayland_egl_context.cpp
|
||||
src/gtk_wayland_egl_context.h
|
||||
src/wayland-idle-inhibit-unstable-v1.c)
|
||||
list(APPEND ARGS ${WAYLAND_CFLAGS})
|
||||
list(APPEND LIBS ${WAYLAND_LIBRARIES})
|
||||
endif()
|
||||
|
||||
if(USE_XV)
|
||||
pkg_check_modules(XV REQUIRED xv)
|
||||
list(APPEND DEFINES "USE_XV")
|
||||
list(APPEND SOURCES src/gtk_display_driver_xv.cpp
|
||||
src/gtk_display_driver_xv.h)
|
||||
list(APPEND ARGS ${XV_CFLAGS})
|
||||
list(APPEND LIBS ${XV_LIBRARIES})
|
||||
endif()
|
||||
|
||||
if(USE_PULSEAUDIO)
|
||||
pkg_check_modules(PULSEAUDIO REQUIRED libpulse)
|
||||
list(APPEND DEFINES "USE_PULSEAUDIO")
|
||||
list(APPEND SOURCES src/gtk_sound_driver_pulse.cpp)
|
||||
list(APPEND ARGS ${PULSEAUDIO_CFLAGS})
|
||||
list(APPEND LIBS ${PULSEAUDIO_LIBRARIES})
|
||||
endif()
|
||||
|
||||
if(USE_PORTAUDIO)
|
||||
pkg_check_modules(PORTAUDIO REQUIRED portaudio-2.0)
|
||||
list(APPEND DEFINES "USE_PORTAUDIO")
|
||||
list(APPEND SOURCES src/gtk_sound_driver_portaudio.cpp)
|
||||
list(APPEND ARGS ${PORTAUDIO_CFLAGS})
|
||||
list(APPEND LIBS ${PORTAUDIO_LIBRARIES})
|
||||
endif()
|
||||
|
||||
if(USE_ALSA)
|
||||
pkg_check_modules(ALSA REQUIRED alsa)
|
||||
list(APPEND DEFINES "USE_ALSA")
|
||||
list(APPEND SOURCES src/gtk_sound_driver_alsa.cpp)
|
||||
list(APPEND ARGS ${ALSA_CFLAGS})
|
||||
list(APPEND LIBS ${ALSA_LIBRARIES})
|
||||
endif()
|
||||
|
||||
pkg_check_modules(LIBPNG REQUIRED "libpng")
|
||||
list(APPEND ARGS ${LIBPNG_CFLAGS})
|
||||
list(APPEND LIBS ${LIBPNG_LIBRARIES})
|
||||
|
||||
pkg_check_modules(ZLIB REQUIRED "zlib")
|
||||
list(APPEND ARGS ${ZLIB_CFLAGS})
|
||||
list(APPEND LIBS ${ZLIB_LIBRARIES})
|
||||
|
||||
pkg_check_modules(MINIZIP "minizip")
|
||||
if(USE_SYSTEMZIP AND MINIZIP_FOUND)
|
||||
list(APPEND DEFINES "SYSTEM_ZIP")
|
||||
list(APPEND ARGS ${MINIZIP_CFLAGS})
|
||||
list(APPEND LIBS ${MINIZIP_LIBRARIES})
|
||||
else()
|
||||
list(APPEND INCLUDES ../unzip)
|
||||
list(APPEND SOURCES ../unzip/unzip.c ../unzip/ioapi.c ../unzip/zip.c)
|
||||
endif()
|
||||
|
||||
if(USE_HQ2X)
|
||||
list(APPEND DEFINES "USE_HQ2X")
|
||||
list(APPEND SOURCES ../filter/hq2x.cpp)
|
||||
endif()
|
||||
|
||||
if(USE_XBRZ)
|
||||
list(APPEND DEFINES "USE_XBRZ")
|
||||
list(APPEND SOURCES ../filter/xbrz.cpp ../filter/xbrz.h src/filter_xbrz.cpp)
|
||||
endif()
|
||||
|
||||
if(DANGEROUS_HACKS)
|
||||
list(APPEND DEFINES ALLOW_CPU_OVERCLOCK)
|
||||
message("Dangerous hacks are enabled. Use at your own risk.")
|
||||
endif()
|
||||
|
||||
list(APPEND SOURCES
|
||||
src/gtk_sound_driver.h
|
||||
../filter/2xsai.cpp
|
||||
../filter/2xsai.h
|
||||
../filter/epx.cpp
|
||||
../filter/epx.h
|
||||
src/filter_epx_unsafe.h
|
||||
src/filter_epx_unsafe.cpp
|
||||
src/gtk_binding.cpp
|
||||
src/gtk_binding.h
|
||||
src/gtk_cheat.cpp
|
||||
src/gtk_cheat.h
|
||||
src/gtk_config.cpp
|
||||
src/gtk_config.h
|
||||
src/gtk_control.cpp
|
||||
src/gtk_control.h
|
||||
src/gtk_display.cpp
|
||||
src/gtk_display_driver_gtk.cpp
|
||||
src/gtk_display_driver_gtk.h
|
||||
src/gtk_display_driver.h
|
||||
src/gtk_display.h
|
||||
src/gtk_file.cpp
|
||||
src/gtk_file.h
|
||||
src/gtk_builder_window.cpp
|
||||
src/gtk_builder_window.h
|
||||
src/gtk_preferences.cpp
|
||||
src/gtk_preferences.h
|
||||
src/gtk_s9xcore.h
|
||||
src/gtk_s9x.cpp
|
||||
src/gtk_s9x.h
|
||||
src/gtk_s9xwindow.cpp
|
||||
src/gtk_s9xwindow.h
|
||||
src/gtk_sound.cpp
|
||||
src/gtk_sound.h
|
||||
src/gtk_splash.cpp
|
||||
../filter/snes_ntsc_config.h
|
||||
../filter/snes_ntsc.h
|
||||
../filter/snes_ntsc_impl.h
|
||||
../filter/snes_ntsc.c
|
||||
src/gtk_compat.h
|
||||
src/gtk_sound_driver_sdl.h
|
||||
src/gtk_sound_driver_sdl.cpp
|
||||
../fxinst.cpp
|
||||
../fxemu.cpp
|
||||
../fxdbg.cpp
|
||||
../c4.cpp
|
||||
../c4emu.cpp
|
||||
../apu/apu.cpp
|
||||
../apu/bapu/dsp/sdsp.cpp
|
||||
../apu/bapu/smp/smp.cpp
|
||||
../apu/bapu/smp/smp_state.cpp
|
||||
../msu1.cpp
|
||||
../msu1.h
|
||||
../dsp.cpp
|
||||
../dsp1.cpp
|
||||
../dsp2.cpp
|
||||
../dsp3.cpp
|
||||
../dsp4.cpp
|
||||
../spc7110.cpp
|
||||
../obc1.cpp
|
||||
../seta.cpp
|
||||
../seta010.cpp
|
||||
../seta011.cpp
|
||||
../seta018.cpp
|
||||
../controls.cpp
|
||||
../crosshairs.cpp
|
||||
../cpu.cpp
|
||||
../sa1.cpp
|
||||
../debug.cpp
|
||||
../sdd1.cpp
|
||||
../tile.cpp
|
||||
../tileimpl-n1x1.cpp
|
||||
../tileimpl-n2x1.cpp
|
||||
../tileimpl-h2x1.cpp
|
||||
../srtc.cpp
|
||||
../gfx.cpp
|
||||
../memmap.cpp
|
||||
../clip.cpp
|
||||
../ppu.cpp
|
||||
../dma.cpp
|
||||
../snes9x.cpp
|
||||
../globals.cpp
|
||||
../stream.cpp
|
||||
../conffile.cpp
|
||||
../bsx.cpp
|
||||
../logger.cpp
|
||||
../snapshot.cpp
|
||||
../screenshot.cpp
|
||||
../movie.cpp
|
||||
../statemanager.cpp
|
||||
../sha256.cpp
|
||||
../bml.cpp
|
||||
../cpuops.cpp
|
||||
../cpuexec.cpp
|
||||
../sa1cpu.cpp
|
||||
../cheats.cpp
|
||||
../cheats2.cpp
|
||||
../sdd1emu.cpp
|
||||
../netplay.cpp
|
||||
../server.cpp
|
||||
../loadzip.cpp
|
||||
../compat.cpp
|
||||
src/gtk_netplay_dialog.cpp
|
||||
src/gtk_netplay_dialog.h
|
||||
src/gtk_netplay.cpp
|
||||
src/gtk_netplay.h
|
||||
src/background_particles.cpp
|
||||
src/background_particles.h)
|
||||
|
||||
set(LIBJMA_SOURCES
|
||||
../jma/s9x-jma.cpp
|
||||
../jma/7zlzma.cpp
|
||||
../jma/crc32.cpp
|
||||
../jma/iiostrm.cpp
|
||||
../jma/inbyte.cpp
|
||||
../jma/jma.cpp
|
||||
../jma/lzma.cpp
|
||||
../jma/lzmadec.cpp
|
||||
../jma/winout.cpp)
|
||||
|
||||
add_library(jma ${LIBJMA_SOURCES})
|
||||
target_include_directories(jma PRIVATE ${INCLUDES})
|
||||
target_compile_options(jma PUBLIC ${ARGS})
|
||||
|
||||
add_executable(sourcify src/sourcify.c)
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/gtk_snes9x_ui.cpp
|
||||
COMMAND sourcify ${CMAKE_CURRENT_SOURCE_DIR}/src/snes9x.ui ${CMAKE_CURRENT_BINARY_DIR}/gtk_snes9x_ui.cpp snes9x_ui
|
||||
DEPENDS sourcify)
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/mini_icon.cpp
|
||||
COMMAND sourcify ${CMAKE_CURRENT_SOURCE_DIR}/data/mini_icon.png ${CMAKE_CURRENT_BINARY_DIR}/mini_icon.cpp mini_icon
|
||||
DEPENDS sourcify)
|
||||
|
||||
add_executable(snes9x-gtk ${SOURCES} ${jma} ${CMAKE_CURRENT_BINARY_DIR}/gtk_snes9x_ui.cpp ${CMAKE_CURRENT_BINARY_DIR}/mini_icon.cpp)
|
||||
target_include_directories(snes9x-gtk PRIVATE ${INCLUDES})
|
||||
target_compile_options(snes9x-gtk PRIVATE ${ARGS})
|
||||
target_link_libraries(snes9x-gtk PRIVATE ${LIBS})
|
||||
target_compile_definitions(snes9x-gtk PRIVATE ${DEFINES})
|
|
@ -236,29 +236,7 @@ if get_option('xbrz')
|
|||
srcs += ['../filter/xbrz.cpp', '../filter/xbrz.h', 'src/filter_xbrz.cpp', 'src/filter_xbrz.h']
|
||||
endif
|
||||
|
||||
if c_compiler.has_function('mkstemp')
|
||||
args += '-DHAVE_MKSTEMP'
|
||||
endif
|
||||
|
||||
if c_compiler.has_header('strings.h')
|
||||
args += '-DHAVE_STRINGS_H'
|
||||
endif
|
||||
|
||||
if c_compiler.has_header('stdint.h')
|
||||
args += '-DHAVE_STDINT_H'
|
||||
endif
|
||||
|
||||
results = c_compiler.run('int main(int argc, char **argv) { int i; i = -1; i >>= 1; return (i < 0 ? 0 : 1); }')
|
||||
|
||||
if results.returncode() == 0
|
||||
args += '-DRIGHTSHIFT_IS_SAR'
|
||||
endif
|
||||
|
||||
results = c_compiler.run('int main(int argc, char **argv) { return (!(sizeof(void *) == sizeof(int))); }')
|
||||
|
||||
if results.returncode() != 0
|
||||
args += '-DPTR_NOT_INT'
|
||||
endif
|
||||
args += ['-DHAVE_MKSTEMP', '-DHAVE_STRINGS_H', '-DHAVE_STDINT_H', '-DRIGHTSHIFT_IS_SAR']
|
||||
|
||||
srcs += [
|
||||
'src/gtk_sound_driver.h',
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
\*****************************************************************************/
|
||||
|
||||
#include "gtk_s9x.h"
|
||||
#include "../filter/xbrz.h"
|
||||
#include "filter/xbrz.h"
|
||||
#include <vector>
|
||||
|
||||
#define CONVERT_16_TO_32(pixel) \
|
||||
|
|
4
port.h
4
port.h
|
@ -99,11 +99,7 @@ __extension__
|
|||
#endif
|
||||
typedef long long int64;
|
||||
typedef unsigned long long uint64;
|
||||
#ifdef PTR_NOT_INT
|
||||
typedef size_t pint;
|
||||
#else // __PTR_NOT_INT
|
||||
typedef size_t pint;
|
||||
#endif // __PTR_NOT_INT
|
||||
#endif // __WIN32__
|
||||
#endif // HAVE_STDINT_H
|
||||
#endif // snes9x_types_defined
|
||||
|
|
Loading…
Reference in New Issue