mirror of https://github.com/AxioDL/metaforce.git
16 lines
965 B
CMake
16 lines
965 B
CMake
file(GLOB MAPPER_SRCS fixNES/mapper/*.c)
|
|
add_library(NESEmulator CNESEmulator.hpp CNESEmulator.cpp CNESShader.hpp CNESShader.cpp malloc.h
|
|
apu.c fixNES/audio_fds.c fixNES/audio_mmc5.c fixNES/audio_vrc6.c fixNES/audio_vrc7.c
|
|
fixNES/audio_n163.c fixNES/audio_s5b.c fixNES/cpu.c ppu.c fixNES/mem.c fixNES/input.c
|
|
fixNES/mapper.c fixNES/mapperList.c fixNES/fm2play.c fixNES/vrc_irq.c ${MAPPER_SRCS})
|
|
hsh_sources(CNESShader.cpp)
|
|
target_include_directories(NESEmulator PRIVATE ${CMAKE_SOURCE_DIR}/DataSpec ${CMAKE_SOURCE_DIR}/Runtime
|
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_compile_definitions(NESEmulator PRIVATE COL_32BIT=1 COL_TEX_BSWAP=1)
|
|
target_link_libraries(NESEmulator PUBLIC hecl-full RuntimeCommon)
|
|
if (NOT MSVC)
|
|
target_compile_options(NESEmulator PRIVATE -Wno-implicit-fallthrough -Wno-format -Wno-pointer-compare
|
|
-Wno-memset-elt-size)
|
|
endif()
|
|
target_hsh(NESEmulator)
|