ladybird/Userland/Libraries/LibIDL/CMakeLists.txt
Sam Atkins 7c8ef79898 LibIDL+WrapperGenerator: Make it easier to work with IDL::Type classes
Track the kind of Type it is, and use that to provide some convenient
`is_foo()` / `as_foo()` methods. While I was at it, made these all
classes instead of structs and made their data private.
2022-09-17 21:27:17 +02:00

8 lines
110 B
CMake

set(SOURCES
IDLParser.cpp
Types.cpp
)
serenity_lib(LibIDL idl)
target_link_libraries(LibIDL LibCore)