Created
September 29, 2023 07:33
-
-
Save sepastian/916c8438856d4fa93d903fe6f8e599f9 to your computer and use it in GitHub Desktop.
Building C++ with Meson and Ninja
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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