the applewin core (which I develop) uses cmake and when I try to build with
DEBUG=1 ./retroarch-build.sh
I get this error
cmake --build build/ --target applewin_libretro --config Release -- -j12 DEBUG=1
ninja: error: unknown target 'DEBUG=1'
It comes from
|
[ -n "$DEBUG" ] && make_cmdline2="$make_cmdline2 DEBUG=$DEBUG" |
which I do not think makes sense with cmake. it should change Release to Debug in the config.
the applewin core (which I develop) uses
cmakeand when I try to build withDEBUG=1 ./retroarch-build.shI get this error
It comes from
libretro-super/libretro-build-common.sh
Line 270 in 976b2e0
which I do not think makes sense with
cmake. it should changeReleasetoDebugin the config.