GLibSharp / GtkSharp

.Net bindings for gtk+3 and above
Other
27 stars 21 forks source link

Nothing to install #76

Open JackHunt opened 1 year ago

JackHunt commented 1 year ago

I have downloaded the 3.22.2 tarball and am attempting to install to a given directory $PREFIX, as per the following.

tar xvf 3.22.2.tar.gz
cd GtkSharp-3.22.2

meson -Dinstall=true -Dprefix=$PREFIX build/
ninja -C build/
ninja -C build/ install

However, it appears that -Dinstall=true is being ignored as $PREFIX is empty and ninja outputs the following message.

ninja: Entering directory `build/'
[0/1] Installing files.
Nothing to install.

I have also tried directly setting install to true as follows, however, this has no effect.

sed -i "s/option('install', type : 'boolean', value : false)/\
option('install', type : 'boolean', value : true)/g" meson_options.txt