index.html 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <!DOCTYPE html>
  2. <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
  3. <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <meta name="description" content="Minimal-overhead Lua wrapper for C++">
  9. <title>Luwra</title>
  10. <link rel="shortcut icon" href="./img/favicon.ico">
  11. <link href='https://fonts.googleapis.com/css?family=Lato:400,700|Roboto+Slab:400,700|Inconsolata:400,700' rel='stylesheet' type='text/css'>
  12. <link rel="stylesheet" href="./css/theme.css" type="text/css" />
  13. <link rel="stylesheet" href="./css/theme_extra.css" type="text/css" />
  14. <link rel="stylesheet" href="./css/highlight.css">
  15. <script>
  16. // Current page data
  17. var mkdocs_page_name = "None";
  18. var mkdocs_page_input_path = "index.md";
  19. var mkdocs_page_url = "/";
  20. </script>
  21. <script src="./js/jquery-2.1.1.min.js"></script>
  22. <script src="./js/modernizr-2.8.3.min.js"></script>
  23. <script type="text/javascript" src="./js/highlight.pack.js"></script>
  24. <script src="./js/theme.js"></script>
  25. </head>
  26. <body class="wy-body-for-nav" role="document">
  27. <div class="wy-grid-for-nav">
  28. <nav data-toggle="wy-nav-shift" class="wy-nav-side stickynav">
  29. <div class="wy-side-nav-search">
  30. <a href="." class="icon icon-home"> Luwra</a>
  31. <div role="search">
  32. <form id ="rtd-search-form" class="wy-form" action="./search.html" method="get">
  33. <input type="text" name="q" placeholder="Search docs" />
  34. </form>
  35. </div>
  36. </div>
  37. <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
  38. <ul class="current">
  39. <li>
  40. <li class="toctree-l1 current">
  41. <a class="current" href=".">Home</a>
  42. <ul>
  43. <li class="toctree-l3"><a href="#installation">Installation</a></li>
  44. <li class="toctree-l3"><a href="#reference-manual">Reference Manual</a></li>
  45. </ul>
  46. </li>
  47. <li>
  48. <li>
  49. <li class="toctree-l1 ">
  50. <a class="" href="basics/">Basics</a>
  51. </li>
  52. <li>
  53. <li>
  54. <li class="toctree-l1 ">
  55. <a class="" href="advanced/">Advanced</a>
  56. </li>
  57. <li>
  58. <li>
  59. <li class="toctree-l1 ">
  60. <a class="" href="miscellaneous/">Miscellaneous</a>
  61. </li>
  62. <li>
  63. </ul>
  64. </div>
  65. &nbsp;
  66. </nav>
  67. <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
  68. <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
  69. <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
  70. <a href=".">Luwra</a>
  71. </nav>
  72. <div class="wy-nav-content">
  73. <div class="rst-content">
  74. <div role="navigation" aria-label="breadcrumbs navigation">
  75. <ul class="wy-breadcrumbs">
  76. <li><a href=".">Docs</a> &raquo;</li>
  77. <li>Home</li>
  78. <li class="wy-breadcrumbs-aside">
  79. <a href="https://github.com/vapourismo/luwra" class="icon icon-github"> Edit on GitHub</a>
  80. </li>
  81. </ul>
  82. <hr/>
  83. </div>
  84. <div role="main">
  85. <div class="section">
  86. <h1 id="installation">Installation</h1>
  87. <p>Luwra is a header-only library, which means that nothing has to be compiled in order to use it.
  88. Simply clone the <a href="https://github.com/vapourismo/luwra">repository</a> or
  89. <a href="https://github.com/vapourismo/luwra/archive/master.zip">download</a> and extract it to a directory of
  90. your preference.</p>
  91. <p>For your application to be able to reach the <code>lib/luwra.hpp</code> header file, you must add
  92. <code>/path/to/luwra/lib</code> to the list of include paths. With Clang and GCC that is done using the
  93. <code>-I/path/to/luwra/lib</code> command-line parameter.</p>
  94. <p>Now you can simply <code>#include &lt;luwra.hpp&gt;</code> in your C++ files and start using Luwra.</p>
  95. <h1 id="reference-manual">Reference Manual</h1>
  96. <p>A reference manual exists <a href="./reference/">here</a>.</p>
  97. </div>
  98. </div>
  99. <footer>
  100. <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
  101. <a href="basics/" class="btn btn-neutral float-right" title="Basics">Next <span class="icon icon-circle-arrow-right"></span></a>
  102. </div>
  103. <hr/>
  104. <div role="contentinfo">
  105. <!-- Copyright etc -->
  106. </div>
  107. Built with <a href="http://www.mkdocs.org">MkDocs</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
  108. </footer>
  109. </div>
  110. </div>
  111. </section>
  112. </div>
  113. <div class="rst-versions" role="note" style="cursor: pointer">
  114. <span class="rst-current-version" data-toggle="rst-current-version">
  115. <a href="https://github.com/vapourismo/luwra" class="icon icon-github" style="float: left; color: #fcfcfc"> GitHub</a>
  116. <span style="margin-left: 15px"><a href="basics/" style="color: #fcfcfc">Next &raquo;</a></span>
  117. </span>
  118. </div>
  119. </body>
  120. </html>
  121. <!--
  122. MkDocs version : 0.15.3
  123. Build Date UTC : 2016-04-05 12:51:45.602562
  124. -->