2021-05-11 20:08:08 +00:00
|
|
|
cmake_minimum_required(VERSION 3.0)
|
2021-05-13 08:22:57 +00:00
|
|
|
project(furnace)
|
2021-05-11 20:08:08 +00:00
|
|
|
|
2021-12-09 08:37:31 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
2021-05-11 20:08:08 +00:00
|
|
|
|
2021-12-11 07:10:09 +00:00
|
|
|
if (ANDROID)
|
|
|
|
set(BUILD_GUI OFF)
|
|
|
|
else()
|
|
|
|
set(BUILD_GUI ON)
|
|
|
|
endif()
|
|
|
|
|
2021-12-11 21:44:02 +00:00
|
|
|
add_subdirectory(extern/fmt)
|
|
|
|
|
2021-12-07 17:21:23 +00:00
|
|
|
set(BUILD_TESTING OFF)
|
2021-12-10 20:16:40 +00:00
|
|
|
set(BUILD_PROGRAMS OFF)
|
|
|
|
set(BUILD_EXAMPLES OFF)
|
2021-12-07 17:21:23 +00:00
|
|
|
add_subdirectory(extern/libsndfile)
|
|
|
|
|
2021-05-11 20:08:08 +00:00
|
|
|
if (WIN32)
|
2021-05-28 20:52:27 +00:00
|
|
|
set(SDL_SHARED OFF)
|
2021-05-28 20:25:55 +00:00
|
|
|
add_subdirectory(extern/SDL)
|
|
|
|
add_subdirectory(extern/zlib)
|
2021-05-11 20:08:08 +00:00
|
|
|
set(HAVE_SDL2 SDL2-static)
|
2021-05-28 20:25:55 +00:00
|
|
|
set(HAVE_Z zlibstatic)
|
2021-12-11 21:44:02 +00:00
|
|
|
include_directories(extern/imgui extern/imgui/backends extern/zlib ${CMAKE_CURRENT_BINARY_DIR}/extern/zlib extern/fmt/include)
|
2021-05-11 20:08:08 +00:00
|
|
|
else()
|
2021-12-11 07:10:09 +00:00
|
|
|
if (BUILD_GUI)
|
|
|
|
set(SDL_SHARED ON)
|
|
|
|
add_subdirectory(extern/SDL)
|
2021-12-11 21:44:02 +00:00
|
|
|
include_directories(extern/SDL/include extern/imgui extern/imgui/backends extern/fmt/include)
|
|
|
|
if (APPLE)
|
|
|
|
set(HAVE_SDL2 SDL2-static)
|
|
|
|
else()
|
|
|
|
set(HAVE_SDL2 SDL2)
|
|
|
|
endif()
|
2021-12-11 07:10:09 +00:00
|
|
|
else()
|
|
|
|
find_library(HAVE_SDL2 SDL2)
|
|
|
|
endif()
|
2021-05-28 21:06:57 +00:00
|
|
|
if (NOT APPLE)
|
|
|
|
find_library(HAVE_JACK jack)
|
|
|
|
endif()
|
2021-05-28 20:25:55 +00:00
|
|
|
find_library(HAVE_Z z)
|
2021-12-07 17:21:23 +00:00
|
|
|
find_library(HAVE_SNDFILE sndfile)
|
2021-05-11 20:08:08 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
set(AUDIO_SOURCES src/audio/abstract.cpp)
|
|
|
|
if (HAVE_SDL2)
|
|
|
|
list(APPEND AUDIO_SOURCES src/audio/sdl.cpp)
|
|
|
|
endif()
|
|
|
|
if (HAVE_JACK)
|
|
|
|
list(APPEND AUDIO_SOURCES src/audio/jack.cpp)
|
|
|
|
endif()
|
|
|
|
|
2021-05-12 08:58:55 +00:00
|
|
|
set(ENGINE_SOURCES
|
|
|
|
src/log.cpp
|
2021-05-12 22:19:18 +00:00
|
|
|
|
|
|
|
extern/Nuked-OPN2/ym3438.c
|
2021-12-09 06:03:05 +00:00
|
|
|
extern/opm/opm.c
|
2021-05-14 08:23:40 +00:00
|
|
|
src/engine/platform/sound/sn76496.cpp
|
2021-05-23 02:10:25 +00:00
|
|
|
src/engine/platform/sound/gb/apu.c
|
2021-05-27 10:06:43 +00:00
|
|
|
src/engine/platform/sound/gb/timing.c
|
2021-06-06 19:02:38 +00:00
|
|
|
src/engine/platform/sound/pce_psg.cpp
|
2021-12-03 21:04:07 +00:00
|
|
|
src/engine/platform/sound/nes/apu.c
|
2021-05-12 22:19:18 +00:00
|
|
|
|
2021-12-04 07:42:22 +00:00
|
|
|
src/engine/platform/sound/c64/sid.cc
|
|
|
|
src/engine/platform/sound/c64/voice.cc
|
|
|
|
src/engine/platform/sound/c64/wave.cc
|
|
|
|
src/engine/platform/sound/c64/envelope.cc
|
|
|
|
src/engine/platform/sound/c64/filter.cc
|
|
|
|
src/engine/platform/sound/c64/extfilt.cc
|
|
|
|
src/engine/platform/sound/c64/pot.cc
|
|
|
|
src/engine/platform/sound/c64/version.cc
|
|
|
|
|
|
|
|
src/engine/platform/sound/c64/wave6581_PS_.cc
|
|
|
|
src/engine/platform/sound/c64/wave6581_PST.cc
|
|
|
|
src/engine/platform/sound/c64/wave6581_P_T.cc
|
|
|
|
src/engine/platform/sound/c64/wave6581__ST.cc
|
|
|
|
src/engine/platform/sound/c64/wave8580_PS_.cc
|
|
|
|
src/engine/platform/sound/c64/wave8580_PST.cc
|
|
|
|
src/engine/platform/sound/c64/wave8580_P_T.cc
|
|
|
|
src/engine/platform/sound/c64/wave8580__ST.cc
|
|
|
|
|
2021-12-09 08:37:31 +00:00
|
|
|
src/engine/platform/sound/ym2610/ymfm_adpcm.cpp
|
|
|
|
src/engine/platform/sound/ym2610/ymfm_opn.cpp
|
|
|
|
src/engine/platform/sound/ym2610/ymfm_ssg.cpp
|
|
|
|
|
2021-12-09 18:25:02 +00:00
|
|
|
src/engine/platform/ym2610Interface.cpp
|
|
|
|
|
2021-05-12 08:58:55 +00:00
|
|
|
src/engine/blip_buf.c
|
|
|
|
src/engine/safeReader.cpp
|
|
|
|
src/engine/engine.cpp
|
2021-05-15 21:42:48 +00:00
|
|
|
src/engine/macroInt.cpp
|
2021-12-09 06:44:40 +00:00
|
|
|
src/engine/pattern.cpp
|
2021-05-12 08:58:55 +00:00
|
|
|
src/engine/playback.cpp
|
|
|
|
src/engine/platform/abstract.cpp
|
2021-05-12 22:19:18 +00:00
|
|
|
src/engine/platform/genesis.cpp
|
2021-05-16 22:43:10 +00:00
|
|
|
src/engine/platform/genesisext.cpp
|
2021-05-15 19:18:16 +00:00
|
|
|
src/engine/platform/sms.cpp
|
2021-05-26 08:17:12 +00:00
|
|
|
src/engine/platform/gb.cpp
|
2021-06-06 19:02:38 +00:00
|
|
|
src/engine/platform/pce.cpp
|
2021-12-04 06:19:54 +00:00
|
|
|
src/engine/platform/nes.cpp
|
2021-12-05 04:55:28 +00:00
|
|
|
src/engine/platform/c64.cpp
|
2021-12-08 22:40:35 +00:00
|
|
|
src/engine/platform/arcade.cpp
|
2021-12-09 18:25:02 +00:00
|
|
|
src/engine/platform/ym2610.cpp
|
2021-05-12 08:58:55 +00:00
|
|
|
src/engine/platform/dummy.cpp)
|
2021-05-11 20:08:08 +00:00
|
|
|
|
2021-12-11 07:10:09 +00:00
|
|
|
set(GUI_SOURCES
|
|
|
|
extern/imgui/imgui.cpp
|
|
|
|
extern/imgui/imgui_demo.cpp
|
|
|
|
extern/imgui/imgui_draw.cpp
|
|
|
|
extern/imgui/imgui_tables.cpp
|
|
|
|
extern/imgui/imgui_widgets.cpp
|
|
|
|
extern/imgui/backends/imgui_impl_sdlrenderer.cpp
|
|
|
|
extern/imgui/backends/imgui_impl_sdl.cpp
|
2021-12-11 22:41:32 +00:00
|
|
|
extern/imgui/misc/cpp/imgui_stdlib.cpp
|
2021-12-11 07:10:09 +00:00
|
|
|
extern/igfd/ImGuiFileDialog.cpp
|
|
|
|
|
2021-12-11 08:11:40 +00:00
|
|
|
src/gui/font_main.cpp
|
|
|
|
src/gui/font_pat.cpp
|
2021-12-11 07:10:09 +00:00
|
|
|
src/gui/gui.cpp)
|
|
|
|
|
|
|
|
if (BUILD_GUI)
|
|
|
|
add_executable(furnace ${ENGINE_SOURCES} ${AUDIO_SOURCES} ${GUI_SOURCES} src/main.cpp)
|
2021-12-11 08:11:40 +00:00
|
|
|
target_compile_definitions(furnace PUBLIC HAVE_GUI)
|
2021-12-11 07:10:09 +00:00
|
|
|
else()
|
|
|
|
add_executable(furnace ${ENGINE_SOURCES} ${AUDIO_SOURCES} src/main.cpp)
|
|
|
|
endif()
|
2021-05-11 20:08:08 +00:00
|
|
|
|
2021-12-11 21:44:02 +00:00
|
|
|
target_link_libraries(furnace ${HAVE_SDL2} ${HAVE_Z} sndfile fmt)
|
2021-05-11 20:08:08 +00:00
|
|
|
|
|
|
|
if (HAVE_JACK)
|
2021-05-13 08:22:57 +00:00
|
|
|
target_link_libraries(furnace ${HAVE_JACK})
|
2021-06-09 08:33:03 +00:00
|
|
|
target_compile_definitions(furnace PUBLIC HAVE_JACK)
|
2021-05-11 20:08:08 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if (WIN32)
|
2021-12-07 21:09:00 +00:00
|
|
|
target_link_libraries(furnace -static)
|
2021-05-11 20:08:08 +00:00
|
|
|
endif()
|