diff options
| author | Zachary Turner <zturner@google.com> | 2014-08-18 16:47:33 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2014-08-18 16:47:33 +0000 |
| commit | 3ffabc2bceaf2ea8ffac1f40398b4dd9ee4c0de1 (patch) | |
| tree | 0b2ad55f35e2bb353b21befc5d0ce4d06a3417c0 | |
| parent | 32482080feb6a7ad038c80d546267df63ee87547 (diff) | |
| download | bcm5719-llvm-3ffabc2bceaf2ea8ffac1f40398b4dd9ee4c0de1.tar.gz bcm5719-llvm-3ffabc2bceaf2ea8ffac1f40398b4dd9ee4c0de1.zip | |
Fix an issue with source file groupings in the CMake build.
llvm-svn: 215901
| -rw-r--r-- | lldb/source/Host/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/CMakeLists.txt b/lldb/source/Host/CMakeLists.txt index f373437c3b2..b4ac5dc1bd6 100644 --- a/lldb/source/Host/CMakeLists.txt +++ b/lldb/source/Host/CMakeLists.txt @@ -1,6 +1,6 @@ macro(add_host_subdirectory group) list(APPEND HOST_SOURCES ${ARGN}) - source_group(group FILES ${ARGN}) + source_group(${group} FILES ${ARGN}) endmacro() add_host_subdirectory(common |

