mirror of
https://github.com/kbeckmann/game-and-watch-retro-go.git
synced 2025-12-16 13:15:55 +01:00
17 lines
418 B
CMake
17 lines
418 B
CMake
set(COMPONENT_SRCDIRS ". apu apu/bapu/dsp apu/bapu/smp")
|
|
set(COMPONENT_ADD_INCLUDEDIRS ". apu apu/bapu/dsp apu/bapu/smp")
|
|
set(COMPONENT_REQUIRES "retro-go")
|
|
register_component()
|
|
rg_setup_compile_options(
|
|
-O3
|
|
-fno-rtti
|
|
-fno-exceptions
|
|
-fno-math-errno
|
|
-fomit-frame-pointer
|
|
-fno-stack-protector
|
|
-DRIGHTSHIFT_IS_SAR
|
|
-DHAVE_STDINT_H
|
|
-DIS_LITTLE_ENDIAN
|
|
-Wno-error=format-truncation
|
|
)
|