aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-08-02[patch] Use a reasonable fallback for LLVM_CONFAndré Schröder1-1/+13
In #19 I wrote that I couldn't compile the code via $ cmake -B build -S cgrep/ -DUSE_MONOLITH_LIBTOOLING=ON -DCMAKE_CXX_COMPILER=clang++ $ cmake --build build This is because I didn't set LLVM_CONF and it falls back to llvm-config-10. There are two problems with this: First, CMake didn't actually check if LLVM_CONF existed. I now check it via the REQUIRED argument in find_program. Second, my OS (Arch Linux) doesn't name the binary like llvm-config-10 but it's called llvm-config, so the fallback never works on Arch. Thus, I added a non-complete but somewhat reasonable list of possible names.
2021-07-14added llvm 12 and 13 to travis. added some dockerfiles i used for ↵terminaldweller1-8/+0
building/testing against different llvm versions.
2020-11-03its working nowbloodstalker1-4/+8
2020-11-03more fixesbloodstalker1-11/+13
2020-11-03some fixes for the cmake filesbloodstalker1-6/+7
2020-10-30cmake at lastbloodstalker1-0/+50