Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork114
Adding support for sketch-specific build properties#29
New issue
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Tests for existence of a build_props.txt file in the sketchdirectory. If present reads properties similar to those found in thehardware and board files, allowing the user to easily customise thebuild for a specific sketch. Most useful when containing lines similarto compiler.c.extra_flags=-D NDEBUG compiler.cpp.extra_flags=-D NDEBUG -D MYLIBRARY_BUFSIZE=100which enables the user to have macros defined for all compilationunits, including libraries.Signed-off-by: Steve Marple <stevemarple@googlemail.com>
stevemarple commentedOct 5, 2015
One point of consideration: adding sketch-specific build properties allows the user to override |
stevemarple commentedOct 5, 2015
Addresses#15 |
ffissore commentedOct 5, 2015
Assigning to@cmaglie: he will explain why such external defines are considered harmful |
ffissore commentedOct 5, 2015
btw, nice code, thank you very much |
FrankBoesing commentedApr 28, 2016
ping.. |
luelista commentedSep 9, 2017
ffissore commentedSep 11, 2017
@max-weller sorry you missed the news. I no longer work for arduinohttps://groups.google.com/a/arduino.cc/forum/#!msg/developers/YJLX6AZHem4/kpsLef7XBAAJ |
ricardojlrufino commentedAug 21, 2018
+1 |
CLAassistant commentedApr 9, 2021 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Tests for existence of a build_props.txt file in the sketch
directory. If present reads properties similar to those found in the
hardware and board files, allowing the user to easily customise the
build for a specific sketch. Most useful when containing lines similar
to
which enables the user to have macros defined for all compilation
units, including libraries.
Signed-off-by: Steve Marplestevemarple@googlemail.com