Skip to content

kands-code/ks-meson-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Template of C++ project with Meson

Config

To initialize project with debug mode, run:

meson setup --buildtype=debug build/ ./

Reconfigure run:

meson setup --buildtype=debug --reconfigure build/ ./

Build

To build project, run:

meson compile -C build/

If you want rebuild project entirely, run:

meson compile --clean -C build/
meson compile -C build/

Run

To run binary, run:

./build/app/app

Install

To install library to some place, for example ~/.local/self, run:

meson setup --buildtype=release --prefix="~/.local/self" --reconfigure build/ ./
meson install -C build/

About

Simple template for C++ project with Meson.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published