We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is the place to discuss general (or specific) changes to the syntax of the Quickbuild configuration language.
Here's the current syntax for reference.
# General compiler arguments compiler = "clang++"; flags = "-g -O0 -Wall -Wextra -pthread -pedantic-errors"; # Files to compile sources = "src/*.cpp"; headers = "src/*.hpp"; # Files to create objects = sources: "src/*.cpp" -> "obj/*.o"; binary = "./bin/quickbuild"; # Main target "quickbuild" { depends = objects, headers; run = "[compiler] [flags] [objects] -o [binary]"; } # Object files objects as obj { depends = obj: "obj/*.o" -> "src/*.cpp"; run = "[compiler] [flags] -c [depends] -o [obj]"; } # Run "run" { depends = "quickbuild"; run = "[binary]"; } # Clean "clean" { run = "rm [objects]", "rm [binary]"; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is the place to discuss general (or specific) changes to the syntax of the Quickbuild configuration language.
Here's the current syntax for reference.
The text was updated successfully, but these errors were encountered: