blob: 4697a8035d1e7409397384c54944f6caeb0b211c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
set(LLVM_LINK_COMPONENTS
BitReader
MCParser
Option
)
add_llvm_executable(empty_string
EmptyStringConverter.cpp
)
target_link_libraries(empty_string
clangAST
clangASTMatchers
clangAnalysis
clangBasic
clangDriver
clangEdit
clangFrontend
clangLex
clangParse
clangSema
clangSerialization
clangTooling
)
cr_install(TARGETS empty_string RUNTIME DESTINATION bin)
|