1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Added a "Header search paths" field to the project settings page that will be used for all exporters

This commit is contained in:
ed 2017-09-29 16:53:08 +01:00
parent 37a92aec63
commit c956b984c6
3 changed files with 6 additions and 1 deletions

View file

@ -749,6 +749,8 @@ void Project::createPropertyEditors (PropertyListBuilder& props)
"Global preprocessor definitions. Use the form \"NAME1=value NAME2=value\", using whitespace, commas, or "
"new-lines to separate the items - to include a space or comma in a definition, precede it with a backslash.");
props.addSearchPathProperty (getProjectHeaderSearchPaths(), "Header search paths", "Global header search paths.");
props.add (new TextPropertyComponent (getProjectUserNotes(), "Notes", 32768, true),
"Extra comments: This field is not used for code or project generation, it's just a space where you can express your thoughts.");
}