<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Installing</title><link>https://sourceforge.net/p/meson/wiki/Installing/</link><description>Recent changes to Installing</description><atom:link href="https://sourceforge.net/p/meson/wiki/Installing/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 04 Sep 2014 07:57:18 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/meson/wiki/Installing/feed" rel="self" type="application/rss+xml"/><item><title>Installing modified by Jussi Pakkanen</title><link>https://sourceforge.net/p/meson/wiki/Installing/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -1,3 +1,10 @@
+The Meson build system has moved
+==
+
+The new home of Meson's documentation is [here](https://github.com/jpakkane/meson/wiki). The information below is preserved only for posterity. It should be considered out of date.
+
+-------
+
 Installing files
 ==

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jussi Pakkanen</dc:creator><pubDate>Thu, 04 Sep 2014 07:57:18 -0000</pubDate><guid>https://sourceforge.netaa5ae0aeaf81a1fa14f55b9ce02d0ddaf820f00d</guid></item><item><title>Installing modified by Jussi Pakkanen</title><link>https://sourceforge.net/p/meson/wiki/Installing/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -13,7 +13,7 @@
 Other install commands are the following.

     headers('header.h', subdir : 'projname') # -&gt; include/projname/header.h
-    man('foo.1') # -&gt; share/man/man1/foo1.gz
+    man('foo.1') # -&gt; share/man/man1/foo.1.gz
     data('progname', sources : 'datafile.cat') # -&gt; share/progname/datafile.dat

 ---
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jussi Pakkanen</dc:creator><pubDate>Wed, 12 Feb 2014 20:50:11 -0000</pubDate><guid>https://sourceforge.net17c303237609363cd26072c41bdcb34e40212eb6</guid></item><item><title>Installing modified by Jussi Pakkanen</title><link>https://sourceforge.net/p/meson/wiki/Installing/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -6,7 +6,9 @@
     project('install', 'c')
     shared_library('mylib', 'libfile.c', install : true)

-There is no need to specify install paths or the like. Meson will automatically install it to the standards-conforming location. In this particular case the executable is installed to the &lt;tt&gt;bin&lt;/tt&gt; subdirectory of the install prefix.
+There is usually no need to specify install paths or the like. Meson will automatically install it to the standards-conforming location. In this particular case the executable is installed to the &lt;tt&gt;bin&lt;/tt&gt; subdirectory of the install prefix. However if you wish to override the install dir, you can do that with the &lt;tt&gt;install_dir&lt;/tt&gt; argument.
+
+    executable('prog', 'prog.c', install : true, install_dir : 'my/special/dir')

 Other install commands are the following.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jussi Pakkanen</dc:creator><pubDate>Wed, 12 Feb 2014 20:38:03 -0000</pubDate><guid>https://sourceforge.net568b6ccd3db4862195262374d5f3fc864752a060</guid></item><item><title>Installing modified by Jussi Pakkanen</title><link>https://sourceforge.net/p/meson/wiki/Installing/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -3,16 +3,16 @@

 By default Meson will not install anything. Build targets can be installed by tagging them as installable in the definition.

-&lt;tt&gt;project('install', 'c')
-shared_library('mylib', 'libfile.c', install : true)&lt;/tt&gt;
+    project('install', 'c')
+    shared_library('mylib', 'libfile.c', install : true)

 There is no need to specify install paths or the like. Meson will automatically install it to the standards-conforming location. In this particular case the executable is installed to the &lt;tt&gt;bin&lt;/tt&gt; subdirectory of the install prefix.

 Other install commands are the following.

-&lt;tt&gt;headers('header.h', subdir : 'projname') # -&gt; include/projname/header.h
-man('foo.1') # -&gt; share/man/man1/foo1.gz
-data('progname', sources : 'datafile.cat') # -&gt; share/progname/datafile.dat&lt;/tt&gt;
+    headers('header.h', subdir : 'projname') # -&gt; include/projname/header.h
+    man('foo.1') # -&gt; share/man/man1/foo1.gz
+    data('progname', sources : 'datafile.cat') # -&gt; share/progname/datafile.dat

 ---

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jussi Pakkanen</dc:creator><pubDate>Sun, 02 Jun 2013 10:24:29 -0000</pubDate><guid>https://sourceforge.net6f4896158a68c0d34c057d8622bddcdb935b58ab</guid></item><item><title>WikiPage Installing modified by Jussi Pakkanen</title><link>https://sourceforge.net/p/meson/wiki/Installing/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="installing-files"&gt;Installing files&lt;/h1&gt;
&lt;p&gt;By default Meson will not install anything. Build targets can be installed by tagging them as installable in the definition.&lt;/p&gt;
&lt;p&gt;&lt;tt&gt;project('install', 'c')&lt;br /&gt;
shared_library('mylib', 'libfile.c', install : true)&lt;/tt&gt;&lt;/p&gt;
&lt;p&gt;There is no need to specify install paths or the like. Meson will automatically install it to the standards-conforming location. In this particular case the executable is installed to the &lt;tt&gt;bin&lt;/tt&gt; subdirectory of the install prefix.&lt;/p&gt;
&lt;p&gt;Other install commands are the following.&lt;/p&gt;
&lt;p&gt;&lt;tt&gt;headers('header.h', subdir : 'projname') # -&amp;gt; include/projname/header.h&lt;br /&gt;
man('foo.1') # -&amp;gt; share/man/man1/foo1.gz&lt;br /&gt;
data('progname', sources : 'datafile.cat') # -&amp;gt; share/progname/datafile.dat&lt;/tt&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;a class="" href="/p/meson/wiki/Manual/"&gt;Back to index&lt;/a&gt;.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jussi Pakkanen</dc:creator><pubDate>Tue, 26 Feb 2013 23:12:52 -0000</pubDate><guid>https://sourceforge.net271371fdb956304604ccf9f5c01f873e21bfbeee</guid></item></channel></rss>