forked from OSchip/llvm-project
20 lines
370 B
CMake
20 lines
370 B
CMake
add_library(LLVMCFIVerify
|
|
STATIC
|
|
FileAnalysis.cpp
|
|
FileAnalysis.h
|
|
GraphBuilder.cpp
|
|
GraphBuilder.h
|
|
)
|
|
|
|
llvm_update_compile_flags(LLVMCFIVerify)
|
|
llvm_map_components_to_libnames(libs
|
|
DebugInfoDWARF
|
|
MC
|
|
MCParser
|
|
Object
|
|
Support
|
|
Symbolize
|
|
)
|
|
target_link_libraries(LLVMCFIVerify ${libs})
|
|
set_target_properties(LLVMCFIVerify PROPERTIES FOLDER "Libraries")
|