configure: Disallow 'sdlapp' to be build as a simulator target.

Change-Id: I52cf549aa8a24080832413ca5afb197047b42bd7
This commit is contained in:
Solomon Peachy 2024-12-07 16:57:04 -05:00
parent 197d0579bd
commit 93baf94dc3

3
tools/configure vendored
View file

@ -4398,6 +4398,9 @@ fi
if [ "$modelname" = "sansae200r" ]; then if [ "$modelname" = "sansae200r" ]; then
echo "Do not use the e200R target for simulator builds. Use e200 instead." echo "Do not use the e200R target for simulator builds. Use e200 instead."
exit 8 exit 8
elif [ "$modelname" = "sdlapp" ]; then
echo "Do not use sdlapp for simulator builds; it is already a native SDL application."
exit 8
fi fi
debug="-DDEBUG" debug="-DDEBUG"
simulator="yes" simulator="yes"