mirror of https://github.com/inolen/redream.git
531 lines
15 KiB
CMake
531 lines
15 KiB
CMake
cmake_minimum_required(VERSION 3.1)
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
|
|
|
include(CheckCSourceCompiles)
|
|
include(CheckIncludeFiles)
|
|
include(CheckFunctionExists)
|
|
include(ExternalProject)
|
|
include(SourceGroupByDir)
|
|
|
|
project(redream)
|
|
set(CMAKE_C_STANDARD 11)
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
#--------------------------------------------------
|
|
# configuration options
|
|
#--------------------------------------------------
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
|
|
"Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
|
|
endif()
|
|
|
|
option(BUILD_LIBRETRO "Build libretro core" OFF)
|
|
option(BUILD_TOOLS "Build tools" OFF)
|
|
option(BUILD_TESTS "Build tests" OFF)
|
|
|
|
if(WIN32 OR MINGW)
|
|
set(PLATFORM_WINDOWS TRUE)
|
|
elseif(ANDROID)
|
|
set(PLATFORM_ANDROID TRUE)
|
|
elseif(APPLE)
|
|
set(PLATFORM_DARWIN TRUE)
|
|
elseif(UNIX)
|
|
set(PLATFORM_LINUX TRUE)
|
|
endif()
|
|
|
|
if("${CMAKE_C_COMPILER_ID}" STREQUAL "MSVC")
|
|
set(COMPILER_MSVC TRUE)
|
|
elseif("${CMAKE_C_COMPILER_ID}" MATCHES "Clang")
|
|
set(COMPILER_CLANG TRUE)
|
|
elseif("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU")
|
|
set(COMPILER_GCC TRUE)
|
|
endif()
|
|
|
|
if(PLATFORM_ANDROID)
|
|
set(ARCH_A64 TRUE)
|
|
else()
|
|
set(ARCH_X64 TRUE)
|
|
endif()
|
|
|
|
if(BUILD_LIBRETRO)
|
|
# building the libretro core requires PIC code for all object files
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
endif()
|
|
|
|
#--------------------------------------------------
|
|
# config file
|
|
#--------------------------------------------------
|
|
|
|
check_include_files(strings.h HAVE_STRINGS_H)
|
|
check_function_exists(strcasecmp HAVE_STRCASECMP)
|
|
check_function_exists(strnlen HAVE_STRNLEN)
|
|
check_function_exists(strnstr HAVE_STRNSTR)
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/core/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/src/core/config.h)
|
|
list(APPEND RELIB_INCLUDES ${CMAKE_CURRENT_BINARY_DIR}/src)
|
|
list(APPEND RELIB_DEFS HAVE_CONFIG_H)
|
|
|
|
|
|
#--------------------------------------------------
|
|
# static libs
|
|
#--------------------------------------------------
|
|
|
|
# capstone
|
|
set(CAPSTONE_ARM_SUPPORT OFF CACHE BOOL "")
|
|
set(CAPSTONE_ARM64_SUPPORT OFF CACHE BOOL "")
|
|
set(CAPSTONE_MIPS_SUPPORT OFF CACHE BOOL "")
|
|
set(CAPSTONE_PPC_SUPPORT OFF CACHE BOOL "")
|
|
set(CAPSTONE_SPARC_SUPPORT OFF CACHE BOOL "")
|
|
set(CAPSTONE_SYSZ_SUPPORT OFF CACHE BOOL "")
|
|
set(CAPSTONE_XCORE_SUPPORT OFF CACHE BOOL "")
|
|
add_subdirectory(deps/capstone EXCLUDE_FROM_ALL)
|
|
list(APPEND RELIB_INCLUDES deps/capstone/include)
|
|
list(APPEND RELIB_LIBS capstone-static)
|
|
|
|
# dirent
|
|
list(APPEND RELIB_INCLUDES deps/dirent-1.21)
|
|
|
|
# gdb_server
|
|
list(APPEND RELIB_INCLUDES deps/gdb_server)
|
|
|
|
# glad
|
|
add_library(glad STATIC deps/glad/src/glad.c)
|
|
target_include_directories(glad SYSTEM PUBLIC deps/glad/include)
|
|
list(APPEND RELIB_INCLUDES deps/glad/include)
|
|
list(APPEND RELIB_LIBS glad)
|
|
|
|
# inih
|
|
add_library(inih STATIC deps/inih/ini.c)
|
|
list(APPEND RELIB_INCLUDES deps/inih)
|
|
list(APPEND RELIB_LIBS inih)
|
|
|
|
# vixl
|
|
if(ARCH_A64)
|
|
file(GLOB VIXL_SOURCES deps/vixl/src/*.cc deps/vixl/src/aarch64/*.cc)
|
|
add_library(vixl STATIC ${VIXL_SOURCES})
|
|
target_compile_definitions(vixl PRIVATE VIXL_CODE_BUFFER_STATIC)
|
|
list(APPEND RELIB_INCLUDES deps/vixl/src)
|
|
list(APPEND RELIB_LIBS vixl)
|
|
endif()
|
|
|
|
# xbyak
|
|
if(ARCH_X64)
|
|
list(APPEND RELIB_INCLUDES deps/xbyak-4.901)
|
|
endif()
|
|
|
|
#--------------------------------------------------
|
|
# optional libs
|
|
#--------------------------------------------------
|
|
|
|
# imgui
|
|
add_library(imgui STATIC
|
|
deps/cimgui/imgui/imgui.cpp
|
|
deps/cimgui/imgui/imgui_demo.cpp
|
|
deps/cimgui/imgui/imgui_draw.cpp
|
|
deps/cimgui/cimgui/cimgui.cpp
|
|
deps/cimgui/cimgui/drawList.cpp
|
|
deps/cimgui/cimgui/fontAtlas.cpp
|
|
deps/cimgui/cimgui/listClipper.cpp)
|
|
list(APPEND RELIB_INCLUDES deps/cimgui)
|
|
list(APPEND IMGUI_LIBS imgui)
|
|
|
|
# microprofile
|
|
list(APPEND RELIB_INCLUDES deps/microprofile)
|
|
|
|
# sdl2
|
|
set(DIRECTX OFF CACHE BOOL "")
|
|
set(RENDER_D3D OFF CACHE BOOL "")
|
|
set(SDL_ATOMIC OFF CACHE BOOL "")
|
|
set(SDL_CPUINFO ON CACHE BOOL "")
|
|
set(SDL_FILESYSTEM OFF CACHE BOOL "")
|
|
set(SDL_HAPTIC OFF CACHE BOOL "")
|
|
set(SDL_POWER OFF CACHE BOOL "")
|
|
set(SDL_RENDER OFF CACHE BOOL "")
|
|
set(SDL_SHARED OFF CACHE BOOL "")
|
|
set(SDL_STATIC ON CACHE BOOL "")
|
|
|
|
if(PLATFORM_DARWIN)
|
|
set(SDL_FRAMEWORK_CARBON 1)
|
|
endif()
|
|
|
|
add_subdirectory(deps/sdl2-2.0.5 EXCLUDE_FROM_ALL)
|
|
list(APPEND RELIB_INCLUDES deps/sdl2-2.0.5/include)
|
|
|
|
if(MINGW)
|
|
list(APPEND SDL_LIBS mingw32)
|
|
endif()
|
|
list(APPEND SDL_LIBS SDL2main SDL2-static)
|
|
|
|
#--------------------------------------------------
|
|
# format
|
|
#--------------------------------------------------
|
|
|
|
find_package(ClangFormat)
|
|
|
|
if(CLANG_FORMAT_FOUND)
|
|
file(GLOB_RECURSE CLANG_FORMAT_ARGS "src/*.c" "src/*.cc" "src/*.h" "test/*.c" "test/*.cc" "test/*.h" "tools/*.c" "tools/*.cc" "tools/*.h")
|
|
add_custom_target(format ${CLANG_FORMAT_EXECUTABLE} -i ${CLANG_FORMAT_ARGS})
|
|
endif()
|
|
|
|
#--------------------------------------------------
|
|
# redream sources, includes and libs, common to multiple projects
|
|
#--------------------------------------------------
|
|
|
|
set(RELIB_SOURCES
|
|
src/core/assert.c
|
|
src/core/exception_handler.c
|
|
src/core/filesystem.c
|
|
src/core/interval_tree.c
|
|
src/core/list.c
|
|
src/core/log.c
|
|
src/core/md5.c
|
|
src/core/memory.c
|
|
src/core/option.c
|
|
src/core/profiler.cc
|
|
src/core/ringbuf.cc
|
|
src/core/rb_tree.c
|
|
src/core/sort.c
|
|
src/core/string.c
|
|
src/file/trace.c
|
|
src/guest/aica/aica.c
|
|
src/guest/arm7/arm7.c
|
|
src/guest/bios/bios.c
|
|
src/guest/bios/flash.c
|
|
src/guest/bios/syscalls.c
|
|
src/guest/gdrom/cdi.c
|
|
src/guest/gdrom/disc.c
|
|
src/guest/gdrom/gdi.c
|
|
src/guest/gdrom/gdrom.c
|
|
src/guest/gdrom/patch.c
|
|
src/guest/holly/holly.c
|
|
src/guest/maple/controller.c
|
|
src/guest/maple/maple.c
|
|
src/guest/maple/vmu.c
|
|
src/guest/pvr/pvr.c
|
|
src/guest/pvr/ta.c
|
|
src/guest/pvr/tr.c
|
|
src/guest/rom/boot.c
|
|
src/guest/rom/flash.c
|
|
src/guest/sh4/sh4.c
|
|
src/guest/sh4/sh4_ccn.c
|
|
src/guest/sh4/sh4_dbg.c
|
|
src/guest/sh4/sh4_dmac.c
|
|
src/guest/sh4/sh4_intc.c
|
|
src/guest/sh4/sh4_mmu.c
|
|
src/guest/sh4/sh4_tmu.c
|
|
src/guest/debugger.c
|
|
src/guest/dreamcast.c
|
|
src/guest/memory.c
|
|
src/guest/scheduler.c
|
|
src/host/keycode.c
|
|
src/jit/backend/interp/interp_backend.c
|
|
src/jit/frontend/armv3/armv3_context.c
|
|
src/jit/frontend/armv3/armv3_disasm.c
|
|
src/jit/frontend/armv3/armv3_fallback.c
|
|
src/jit/frontend/armv3/armv3_frontend.c
|
|
src/jit/frontend/sh4/sh4_disasm.c
|
|
src/jit/frontend/sh4/sh4_fallback.c
|
|
src/jit/frontend/sh4/sh4_frontend.c
|
|
src/jit/frontend/sh4/sh4_translate.c
|
|
src/jit/ir/ir.c
|
|
src/jit/ir/ir_read.c
|
|
src/jit/ir/ir_write.c
|
|
src/jit/passes/constant_propagation_pass.c
|
|
src/jit/passes/control_flow_analysis_pass.c
|
|
src/jit/passes/conversion_elimination_pass.c
|
|
src/jit/passes/dead_code_elimination_pass.c
|
|
src/jit/passes/expression_simplification_pass.c
|
|
src/jit/passes/load_store_elimination_pass.c
|
|
src/jit/passes/register_allocation_pass.c
|
|
src/jit/jit.c
|
|
src/jit/pass_stats.c
|
|
src/render/gl_backend.c
|
|
src/render/imgui.cc
|
|
src/render/microprofile.cc)
|
|
|
|
if(PLATFORM_ANDROID)
|
|
list(APPEND RELIB_DEFS PLATFORM_ANDROID=1)
|
|
list(APPEND RELIB_SOURCES
|
|
src/core/exception_handler_linux.c
|
|
src/core/filesystem_posix.c
|
|
src/core/memory_posix.c
|
|
src/core/thread_posix.c
|
|
src/core/time_linux.c)
|
|
elseif(PLATFORM_DARWIN)
|
|
list(APPEND RELIB_DEFS PLATFORM_DARWIN=1)
|
|
list(APPEND RELIB_SOURCES
|
|
src/core/exception_handler_mac.c
|
|
src/core/filesystem_posix.c
|
|
src/core/memory_posix.c
|
|
src/core/thread_posix.c
|
|
src/core/time_mac.c)
|
|
elseif(PLATFORM_LINUX)
|
|
list(APPEND RELIB_DEFS PLATFORM_LINUX=1)
|
|
list(APPEND RELIB_SOURCES
|
|
src/core/exception_handler_linux.c
|
|
src/core/filesystem_posix.c
|
|
src/core/memory_posix.c
|
|
src/core/thread_posix.c
|
|
src/core/time_linux.c)
|
|
elseif(PLATFORM_WINDOWS)
|
|
list(APPEND RELIB_DEFS PLATFORM_WINDOWS=1)
|
|
list(APPEND RELIB_SOURCES
|
|
src/core/exception_handler_win.c
|
|
src/core/filesystem_win.c
|
|
src/core/memory_win.c
|
|
src/core/time_win.c)
|
|
if(MINGW)
|
|
list(APPEND RELIB_SOURCES src/core/thread_posix.c)
|
|
else()
|
|
list(APPEND RELIB_SOURCES src/core/thread_win.c)
|
|
endif()
|
|
endif()
|
|
|
|
if(ARCH_X64)
|
|
list(APPEND RELIB_DEFS ARCH_X64=1)
|
|
list(APPEND RELIB_SOURCES
|
|
src/jit/backend/x64/x64_backend.cc
|
|
src/jit/backend/x64/x64_disassembler.c
|
|
src/jit/backend/x64/x64_dispatch.cc
|
|
src/jit/backend/x64/x64_emitters.cc)
|
|
elseif(ARCH_A64)
|
|
list(APPEND RELIB_DEFS ARCH_A64=1)
|
|
endif()
|
|
|
|
if(COMPILER_MSVC)
|
|
list(APPEND RELIB_DEFS COMPILER_MSVC=1)
|
|
|
|
list(APPEND RELIB_FLAGS -D_SCL_SECURE_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -DWIN32_LEAN_AND_MEAN -DNOMINMAX /GR- /W3 /WX /wd4100 /wd4127 /wd4505 /wd4512 /wd4800 /wd4351)
|
|
elseif(COMPILER_GCC OR COMPILER_CLANG)
|
|
list(APPEND RELIB_FLAGS -fms-extensions -Wall -Wextra -Werror -Wno-unused-function -Wno-unused-parameter -Wno-unused-variable -Wno-strict-aliasing -D_GNU_SOURCE)
|
|
|
|
if(COMPILER_GCC)
|
|
list(APPEND RELIB_DEFS COMPILER_GCC=1)
|
|
|
|
# some flavors of gcc require this to be defined for the PR* macros in inttypes.h
|
|
list(APPEND RELIB_FLAGS -D__STDC_FORMAT_MACROS)
|
|
elseif(COMPILER_CLANG)
|
|
list(APPEND RELIB_DEFS COMPILER_CLANG=1)
|
|
|
|
# clang will warn on '{0}' as -Wmissing-field-initializers even in C code
|
|
# https://llvm.org/bugs/show_bug.cgi?id=21689
|
|
list(APPEND RELIB_FLAGS -Wno-missing-field-initializers -Wno-missing-braces -Wno-microsoft-anon-tag)
|
|
endif()
|
|
|
|
if(NOT PLATFORM_ANDROID)
|
|
# the android libc provides built-in support for pthreads, so no
|
|
# additional linking or compile flags are necessary
|
|
list(APPEND RELIB_FLAGS -pthread)
|
|
list(APPEND RELIB_LIBS pthread)
|
|
endif()
|
|
endif()
|
|
|
|
if(PLATFORM_ANDROID)
|
|
# this is an awful hack for the gcc provided by the android-ndk-r15, which
|
|
# complains about zero-initializing multi-dimensional arrays using foo = {0}
|
|
list(APPEND RELIB_FLAGS -Wno-missing-field-initializers -Wno-missing-braces)
|
|
list(APPEND RELIB_LIBS android log)
|
|
elseif(PLATFORM_LINUX)
|
|
# used by glad / sdl
|
|
list(APPEND RELIB_LIBS dl)
|
|
# used by shm_open / shm_unlink on linux
|
|
list(APPEND RELIB_LIBS rt)
|
|
elseif(PLATFORM_WINDOWS)
|
|
list(APPEND RELIB_LIBS userenv ws2_32)
|
|
endif()
|
|
|
|
#--------------------------------------------------
|
|
# redream
|
|
#--------------------------------------------------
|
|
|
|
if(BUILD_LIBRETRO)
|
|
set(REDREAM_SOURCES ${RELIB_SOURCES} src/host/retro_host.c src/emulator.c)
|
|
set(REDREAM_INCLUDES ${RELIB_INCLUDES} deps/libretro/include)
|
|
set(REDREAM_LIBS ${RELIB_LIBS})
|
|
set(REDREAM_DEFS ${RELIB_DEFS})
|
|
set(REDREAM_FLAGS ${RELIB_FLAGS})
|
|
else()
|
|
set(REDREAM_SOURCES ${RELIB_SOURCES} src/host/sdl_host.c src/emulator.c src/tracer.c)
|
|
set(REDREAM_INCLUDES ${RELIB_INCLUDES})
|
|
set(REDREAM_LIBS ${RELIB_LIBS} ${IMGUI_LIBS} ${SDL_LIBS})
|
|
set(REDREAM_DEFS ${RELIB_DEFS} HAVE_GDBSERVER HAVE_IMGUI HAVE_MICROPROFILE)
|
|
set(REDREAM_FLAGS ${RELIB_FLAGS})
|
|
endif()
|
|
|
|
source_group_by_dir(REDREAM_SOURCES)
|
|
|
|
if(BUILD_LIBRETRO OR ANDROID)
|
|
add_library(redream SHARED ${REDREAM_SOURCES})
|
|
else()
|
|
add_executable(redream ${REDREAM_SOURCES})
|
|
endif()
|
|
|
|
target_include_directories(redream PUBLIC ${REDREAM_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
|
target_link_libraries(redream ${REDREAM_LIBS})
|
|
target_compile_definitions(redream PRIVATE ${REDREAM_DEFS})
|
|
target_compile_options(redream PRIVATE ${REDREAM_FLAGS})
|
|
|
|
#--------------------------------------------------
|
|
# recc
|
|
#--------------------------------------------------
|
|
|
|
if(BUILD_TOOLS)
|
|
|
|
if(ARCH_X64)
|
|
|
|
set(RECC_SOURCES
|
|
${RELIB_SOURCES}
|
|
src/host/null_host.c
|
|
tools/recc/main.c)
|
|
source_group_by_dir(RECC_SOURCES)
|
|
|
|
add_executable(recc ${RECC_SOURCES})
|
|
target_include_directories(recc PUBLIC ${RELIB_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
|
target_link_libraries(recc ${RELIB_LIBS})
|
|
target_compile_definitions(recc PRIVATE ${RELIB_DEFS})
|
|
target_compile_options(recc PRIVATE ${RELIB_FLAGS})
|
|
endif()
|
|
|
|
|
|
set(RETRACE_SOURCES
|
|
${RELIB_SOURCES}
|
|
src/host/null_host.c
|
|
tools/retrace/depth.c
|
|
tools/retrace/main.c)
|
|
source_group_by_dir(RETRACE_SOURCES)
|
|
|
|
add_executable(retrace ${RETRACE_SOURCES})
|
|
target_include_directories(retrace PUBLIC ${RELIB_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
|
target_link_libraries(retrace ${RELIB_LIBS})
|
|
target_compile_definitions(retrace PRIVATE ${RELIB_DEFS})
|
|
target_compile_options(retrace PRIVATE ${RELIB_FLAGS})
|
|
|
|
endif()
|
|
|
|
#--------------------------------------------------
|
|
# retest
|
|
#--------------------------------------------------
|
|
|
|
if(BUILD_TESTS)
|
|
|
|
# compile master .inc file from .s files in test/asm
|
|
set(TEST_ASM
|
|
test/asm/add.s
|
|
test/asm/addc.s
|
|
test/asm/addv.s
|
|
test/asm/and.s
|
|
test/asm/bf.s
|
|
test/asm/bra.s
|
|
test/asm/braf.s
|
|
test/asm/bsr.s
|
|
test/asm/bsrf.s
|
|
test/asm/bt.s
|
|
test/asm/cmp.s
|
|
test/asm/div0.s
|
|
test/asm/div1s.s
|
|
test/asm/div1u.s
|
|
test/asm/dmul.s
|
|
test/asm/dt.s
|
|
test/asm/ext.s
|
|
test/asm/fabs.s
|
|
test/asm/fadd.s
|
|
test/asm/fcmpeq.s
|
|
test/asm/fcmpgt.s
|
|
test/asm/fcnv.s
|
|
test/asm/fdiv.s
|
|
test/asm/fipr.s
|
|
test/asm/fld.s
|
|
test/asm/float.s
|
|
test/asm/fmac.s
|
|
test/asm/fmov.s
|
|
test/asm/fmov_load.s
|
|
test/asm/fmov_index_load.s
|
|
test/asm/fmov_store.s
|
|
test/asm/fmov_index_store.s
|
|
test/asm/fmov_save.s
|
|
test/asm/fmov_restore.s
|
|
test/asm/fmul.s
|
|
test/asm/fneg.s
|
|
test/asm/frchg.s
|
|
test/asm/fsca.s
|
|
test/asm/fschg.s
|
|
test/asm/fsrra.s
|
|
test/asm/fsqrt.s
|
|
test/asm/fsub.s
|
|
test/asm/ftrc.s
|
|
test/asm/ftrv.s
|
|
test/asm/jmp.s
|
|
test/asm/jsr.s
|
|
test/asm/ldc.s
|
|
test/asm/ldcl.s
|
|
test/asm/lds.s
|
|
test/asm/ldsl.s
|
|
test/asm/mova.s
|
|
test/asm/movb.s
|
|
test/asm/movl.s
|
|
test/asm/movt.s
|
|
test/asm/movw.s
|
|
test/asm/mul.s
|
|
test/asm/neg.s
|
|
test/asm/negc.s
|
|
test/asm/not.s
|
|
test/asm/or.s
|
|
test/asm/rot.s
|
|
test/asm/sha.s
|
|
test/asm/shl.s
|
|
test/asm/sub.s
|
|
test/asm/subc.s
|
|
test/asm/subv.s
|
|
test/asm/swap.s
|
|
test/asm/tst.s
|
|
test/asm/xor.s
|
|
)
|
|
set(asm_inc ${CMAKE_CURRENT_SOURCE_DIR}/test/test_sh4.inc)
|
|
|
|
# compile tests into include file if the sh4 toolchain is available
|
|
find_package(PythonInterp)
|
|
find_program(SH_AS NAMES sh-elf-as)
|
|
find_program(SH_LD NAMES sh-elf-ld)
|
|
find_program(SH_NM NAMES sh-elf-nm)
|
|
find_program(SH_OBJCOPY NAMES sh-elf-objcopy)
|
|
if(NOT PYTHONINTERP_FOUND)
|
|
message(WARNING "Could not find python interpreter, won't be able to generate tests")
|
|
elseif(NOT SH_AS)
|
|
message(WARNING "Could not find sh-elf-as, won't be able to generate tests")
|
|
elseif(NOT SH_LD)
|
|
message(WARNING "Could not find sh-elf-ld, won't be able to generate tests")
|
|
elseif(NOT SH_NM)
|
|
message(WARNING "Could not find sh-elf-nm, won't be able to generate tests")
|
|
elseif(NOT SH_OBJCOPY)
|
|
message(WARNING "Could not find sh-elf-objcopy, won't be able to generate tests")
|
|
else()
|
|
add_custom_command(OUTPUT ${asm_inc}
|
|
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/test/test_sh4.py -as ${SH_AS} -ld ${SH_LD} -nm ${SH_NM} -objcopy ${SH_OBJCOPY} -o ${asm_inc} ${TEST_ASM}
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/test/test_sh4.py ${TEST_ASM}
|
|
COMMENT "Assembling ${asm_inc} for ${TEST_ASM}"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
VERBATIM)
|
|
endif()
|
|
|
|
# build test binary
|
|
set(RETEST_SOURCES
|
|
${RELIB_SOURCES}
|
|
src/host/null_host.c
|
|
test/test_dead_code_elimination.c
|
|
test/test_interval_tree.c
|
|
test/test_list.c
|
|
test/test_load_store_elimination.c
|
|
test/test_sh4.c
|
|
${asm_inc}
|
|
test/retest.c)
|
|
source_group_by_dir(RETEST_SOURCES)
|
|
|
|
add_executable(retest ${RETEST_SOURCES})
|
|
target_include_directories(retest PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src ${CMAKE_CURRENT_SOURCE_DIR}/test ${RELIB_INCLUDES})
|
|
target_link_libraries(retest ${RELIB_LIBS})
|
|
target_compile_definitions(retest PRIVATE ${RELIB_DEFS})
|
|
target_compile_options(retest PRIVATE ${RELIB_FLAGS})
|
|
|
|
endif()
|