diff options
author | Torok Edwin <edwintorok@gmail.com> | 2009-08-30 08:24:09 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2009-08-30 08:24:09 +0000 |
commit | ce0c81e7dd321e9f94f628daa5528f56cab0ab88 (patch) | |
tree | 29b76548d9f780040e5ef64de07c626114d28fa5 /lib/Support/CMakeLists.txt | |
parent | 743810620742c92be90a30c7fc7d5e6631baff1f (diff) |
Add regular expression matching support, based on OpenBSD regexec()/regcomp()
implementation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80493 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/CMakeLists.txt')
-rw-r--r-- | lib/Support/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Support/CMakeLists.txt b/lib/Support/CMakeLists.txt index 05f1ac7d98..0144b28d2e 100644 --- a/lib/Support/CMakeLists.txt +++ b/lib/Support/CMakeLists.txt @@ -32,6 +32,12 @@ add_llvm_library(LLVMSupport Twine.cpp raw_os_ostream.cpp raw_ostream.cpp + Regex.cpp + regcomp.c + regerror.c + regexec.c + regfree.c + regstrlcpy.c ) target_link_libraries (LLVMSupport LLVMSystem) |