xref: /llvm-project/lldb/unittests/SymbolFile/PDB/CMakeLists.txt (revision 8be30215feeff1d82fe2bde0c9fb0e6cd1bfc15c)
1add_lldb_unittest(SymbolFilePDBTests
2  SymbolFilePDBTests.cpp
3
4  LINK_LIBS
5    lldbCore
6    lldbHost
7    lldbSymbol
8    lldbPluginObjectFilePECOFF
9    lldbPluginSymbolFileDWARF
10    lldbPluginSymbolFilePDB
11    lldbPluginTypeSystemClang
12    lldbUtilityHelpers
13    LLVMTestingSupport
14  LINK_COMPONENTS
15    Support
16    DebugInfoPDB
17  )
18
19set(test_inputs
20   test-pdb.exe
21   test-pdb.pdb
22   test-pdb-types.exe
23   test-pdb-types.pdb)
24
25add_unittest_inputs(SymbolFilePDBTests "${test_inputs}")
26