mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
27 lines
397 B
CMake
27 lines
397 B
CMake
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)
|