mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.6 KiB
73 lines
1.6 KiB
# Platform metadata.
|
|
|
|
autodetect:
|
|
# Platforms for autodetect header. Order matters because some defines
|
|
# overlap, so rules select for more specific define first.
|
|
-
|
|
name: Mac OSX, iPhone, Darwin
|
|
check: DUK_F_APPLE
|
|
include: platform_apple.h.in
|
|
-
|
|
name: Orbis
|
|
check: DUK_F_ORBIS
|
|
include: platform_orbis.h.in
|
|
-
|
|
name: OpenBSD
|
|
check: DUK_F_OPENBSD
|
|
include: platform_openbsd.h.in
|
|
-
|
|
name: Generic BSD
|
|
check: DUK_F_BSD
|
|
include: platform_genericbsd.h.in
|
|
-
|
|
name: Atari ST TOS
|
|
check: DUK_F_TOS
|
|
include: platform_tos.h.in
|
|
-
|
|
name: AmigaOS
|
|
check: DUK_F_AMIGAOS
|
|
include: platform_amigaos.h.in
|
|
-
|
|
name: Windows
|
|
check: DUK_F_WINDOWS
|
|
include: platform_windows.h.in
|
|
-
|
|
name: Flashplayer (Crossbridge)
|
|
check: DUK_F_FLASHPLAYER
|
|
include: platform_flashplayer.h.in
|
|
-
|
|
name: QNX
|
|
check: DUK_F_QNX
|
|
include: platform_qnx.h.in
|
|
-
|
|
name: TI-Nspire
|
|
check: DUK_F_TINSPIRE
|
|
include: platform_tinspire.h.in
|
|
-
|
|
name: Emscripten
|
|
check: DUK_F_EMSCRIPTEN
|
|
include: platform_emscripten.h.in
|
|
-
|
|
name: Linux
|
|
check: DUK_F_LINUX
|
|
include: platform_linux.h.in
|
|
-
|
|
name: Solaris
|
|
check: DUK_F_SUN
|
|
include: platform_solaris.h.in
|
|
-
|
|
name: Generic POSIX
|
|
check: DUK_F_POSIX
|
|
include: platform_posix.h.in
|
|
-
|
|
name: Cygwin
|
|
check: DUK_F_CYGWIN
|
|
include: platform_cygwin.h.in
|
|
-
|
|
name: Generic UNIX
|
|
check: DUK_F_UNIX
|
|
include: platform_genericunix.h.in
|
|
-
|
|
name: Generic fallback
|
|
check: null
|
|
include: platform_generic.h.in # if nothing else
|
|
|