mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2025-12-01 12:11:20 +00:00
18 lines
431 B
Plaintext
18 lines
431 B
Plaintext
AC_DEFUN([AM_EMSCRIPTEN],
|
|
[
|
|
AC_MSG_CHECKING(for emscripten compiler)
|
|
emscripten_compiler=no
|
|
AC_TRY_COMPILE([
|
|
#ifndef EMSCRIPTEN
|
|
#error "not an emscripten compiler"
|
|
#endif
|
|
],[
|
|
],[
|
|
host=javascript-web-emscripten
|
|
emscripten_compiler=yes
|
|
cross_compiling=yes
|
|
])
|
|
AC_MSG_RESULT($emscripten_compiler)
|
|
AM_CONDITIONAL(EMSCRIPTEN, [test "x$emscripten_compiler" = "xyes"])
|
|
])
|