xref: /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/QemuUser/CMakeLists.txt (revision f6aab3d83b51b91c24247ad2c2573574de475a82)
1lldb_tablegen(PlatformQemuUserProperties.inc -gen-lldb-property-defs
2  SOURCE PlatformQemuUserProperties.td
3  TARGET LLDBPluginPlatformQemuUserPropertiesGen)
4
5lldb_tablegen(PlatformQemuUserPropertiesEnum.inc -gen-lldb-property-enum-defs
6  SOURCE PlatformQemuUserProperties.td
7  TARGET LLDBPluginPlatformQemuUserPropertiesEnumGen)
8
9add_lldb_library(lldbPluginPlatformQemuUser PLUGIN
10  PlatformQemuUser.cpp
11
12  LINK_LIBS
13    lldbUtility
14  LINK_COMPONENTS
15    Support
16    )
17
18add_dependencies(lldbPluginPlatformQemuUser
19  LLDBPluginPlatformQemuUserPropertiesGen
20  LLDBPluginPlatformQemuUserPropertiesEnumGen)
21