25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

configure.ac 898 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. dnl
  2. dnl Configure script for a Lol Engine project
  3. dnl
  4. AC_INIT(roflmao, 0.0)
  5. dnl
  6. dnl Standard autoconf setup and tools requirements
  7. dnl
  8. AC_PREREQ(2.50)
  9. AC_CONFIG_AUX_DIR(.auto)
  10. AC_CANONICAL_SYSTEM
  11. AM_INIT_AUTOMAKE([subdir-objects no-define tar-ustar silent-rules])
  12. AM_DEFAULT_VERBOSITY=0
  13. AC_PROG_CXX
  14. AM_PROG_LIBTOOL
  15. AC_LIBTOOL_CXX
  16. dnl
  17. dnl Build and configure Lol Engine before our repository
  18. dnl Ensure $lol_srcdir and $lol_builddir are properly set up
  19. dnl
  20. ac_configure_args="${ac_configure_args} --disable-test --disable-doc --disable-tutorial --disable-samples"
  21. AC_CONFIG_SUBDIRS([lol])
  22. AC_SUBST(lol_srcdir, '${top_srcdir}/lol')
  23. AC_SUBST(lol_builddir, '${top_builddir}/lol')
  24. dnl
  25. dnl Inherit all Lol Engine checks
  26. dnl
  27. LOL_AC_INIT()
  28. LOL_AC_CHECK()
  29. LOL_AC_SUBST()
  30. dnl
  31. dnl Export automake variables and write makefiles
  32. dnl
  33. AC_CONFIG_FILES(
  34. [Makefile
  35. roflmao/Makefile
  36. ])
  37. AC_OUTPUT