Skip to content

Instantly share code, notes, and snippets.

@sepastian
Created September 29, 2023 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sepastian/916c8438856d4fa93d903fe6f8e599f9 to your computer and use it in GitHub Desktop.
Save sepastian/916c8438856d4fa93d903fe6f8e599f9 to your computer and use it in GitHub Desktop.
Building C++ with Meson and Ninja
# https://germandiagogomez.medium.com/getting-started-with-meson-build-system-and-c-83270f444bee
# Create project directory.
mkdir new_project
cd new_project
# Create source file.
echo "int main() {};" >> main.cpp
# Init meson, setup meson.
meson init
meson setup build
# Build!
ninja -C build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment