about summary refs log tree commit diff stats
path: root/data/maps/the_three_doors/rooms
ModeNameSize
-rw-r--r--Dead End Room.txtpb762log stats plain blame
-rw-r--r--First Second Room.txtpb803log stats plain blame
-rw-r--r--Loose Strings Room.txtpb415log stats plain blame
-rw-r--r--One Luck Room.txtpb401log stats plain blame
-rw-r--r--Silver Portal Room.txtpb764log stats plain blame
lor: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
AC_INIT(rawr-ebooks, version-1.0)
AC_PREREQ([2.59])
AM_INIT_AUTOMAKE([1.10 no-define foreign])
AC_PROG_CXX
AC_CONFIG_FILES([Makefile])

# Get libtwitcurl library and include locations
AC_ARG_WITH([libtwitcurl-include-path],
  [AS_HELP_STRING([--with-libtwitcurl-include-path],
    [location of the libtwitcurl headers, defaults to /usr/include])],
  [LIBTWITCURL_CFLAGS="-I$withval"],
  [LIBTWITCURL_CFLAGS=''])
AC_SUBST([LIBTWITCURL_CFLAGS])

AC_ARG_WITH([libtwitcurl-lib-path],
  [AS_HELP_STRING([--with-libtwitcurl-lib-path], [location of the libtwitcurl libraries])],
  [LIBTWITCURL_LIBS="-L$withval -llibtwitcurl"],
  [LIBTWITCURL_LIBS='-ltwitcurl'])
AC_SUBST([LIBTWITCURL_LIBS])

# Get yaml-cpp library and include locations
AC_ARG_WITH([yamlcpp-include-path],
  [AS_HELP_STRING([--with-yamlcpp-include-path],
    [location of the yamlcpp headers, defaults to /usr/include])],
  [YAML_CFLAGS="-I$withval"],
  [YAML_CFLAGS=''])
AC_SUBST([YAML_CFLAGS])

AC_ARG_WITH([yamlcpp-lib-path],
  [AS_HELP_STRING([--with-yamlcpp-lib-path], [location of the yamlcpp libraries])],
  [YAML_LIBS="-L$withval -lyaml-cpp"],
  [YAML_LIBS='-lyaml-cpp'])
AC_SUBST([YAML_LIBS])

AC_OUTPUT