mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
78a946eabb
This is to reflect the evolving nature of the tool as being useful for more than just dumping PDBs, as it can do many other things. Differential Revision: https://reviews.llvm.org/D34062 llvm-svn: 305106
16 lines
233 B
CMake
16 lines
233 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
DebugInfoCodeView
|
|
DebugInfoPDB
|
|
Object
|
|
Support
|
|
)
|
|
|
|
add_llvm_executable(llvm-pdbutil-fuzzer
|
|
EXCLUDE_FROM_ALL
|
|
llvm-pdbutil-fuzzer.cpp
|
|
)
|
|
|
|
target_link_libraries(llvm-pdbutil-fuzzer
|
|
LLVMFuzzer
|
|
)
|