p-ranav / fccf

fccf: A command-line tool that quickly searches through C/C++ source code in a directory based on a search string and prints relevant code snippets that match the query.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CMakelists.txt STRIP missing "

zhengxle opened this issue · comments

for cmake command, there three errors in CMakelists.txt:
CMake Error at CMakeLists.txt:73 (string):
string sub-command STRIP requires two arguments.

CMake Error at CMakeLists.txt:78 (string):
string sub-command STRIP requires two arguments.

CMake Error at CMakeLists.txt:83 (string):
string sub-command STRIP requires two arguments.

should change to:
73: string(STRIP "${LLVM_LIBRARIES}" LLVM_LIBRARIES)
78: string(STRIP "${LLVM_LDFLAGS}" LLVM_LDFLAGS)
83: string(STRIP "${LLVM_CXXFLAGS}" LLVM_CXXFLAGS)