-
Hello guys. I'm kinda new to Meson(1 month or so usage). Can't find anything on this topic from few days. On Windows project structure is like:
I tried (as shown) to change output dir with |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
install_dir is handled when you run It sounds like what you want is similar to https://mesonbuild.com/Creating-OSX-packages.html just for Windows instead of macOS? |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Ok. I figured it out. I changed
then the Could be good if it is somehow 1 command, but anyway... they can be combined in the VS Code task I guess. Thank you. |
Beta Was this translation helpful? Give feedback.
Ok. I figured it out. I changed
prefix
andbindir
from themeson configure
like:meson configure -Dprefix='D:\ProjectDir' -Dbindir='release'
then the
meson compile
andmeson install
with the aboveexecutable()
install parameters.Could be good if it is somehow 1 command, but anyway... they can be combined in the VS Code task I guess. Thank you.