forked from enlightenment/edi
with having them people can just specify where the clang stuff is installed, if its not possible to find it in the default location. This fixes a bug where clang was not found, dirs: is meant as exclusive parameter, so if you specify there a custom directory, then only THIS specific directory will be used for the search. This fixes also that bug and only specifies that argument if a custom location is given.edi-0.8
parent
70a5ee304b
commit
39203334d4
5 changed files with 31 additions and 19 deletions
@ -1,2 +1,4 @@ |
||||
option('libclang', type : 'boolean', value : true, description : 'Weather to have libclang support') |
||||
option('bear', type : 'boolean', value : true, description : 'Weather to have bear support') |
||||
option('libclang-libdir', type : 'string', value : '', description : 'Specify a none default location for your clang installation') |
||||
option('libclang-headerdir', type : 'string', value : '', description : 'Specify a none default location for your clang installation') |
||||
|
@ -1,6 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
if [[ -d /usr/local/opt/llvm ]]; then |
||||
echo "/usr/local/opt/llvm/include" |
||||
fi |
||||
|
Loading…
Reference in new issue