forked from OSchip/llvm-project
[clang][cmake] Remove extra brace
Remove the extra trailing brace from the local variable accessor. Differential Revision: https://reviews.llvm.org/D133613
This commit is contained in:
parent
0078f7234e
commit
467bb47c84
|
@ -70,7 +70,7 @@ macro(add_clang_library name)
|
|||
${CLANG_SOURCE_DIR}/include/clang/${lib_path}/*.td
|
||||
)
|
||||
source_group("TableGen descriptions" FILES ${tds})
|
||||
set_source_files_properties(${tds}} PROPERTIES HEADER_FILE_ONLY ON)
|
||||
set_source_files_properties(${tds} PROPERTIES HEADER_FILE_ONLY ON)
|
||||
|
||||
if(headers OR tds)
|
||||
set(srcs ${headers} ${tds})
|
||||
|
|
Loading…
Reference in New Issue