diff options
Diffstat (limited to 'Libraries/LibWeb/CodeGenerators/CMakeLists.txt')
-rw-r--r-- | Libraries/LibWeb/CodeGenerators/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Libraries/LibWeb/CodeGenerators/CMakeLists.txt b/Libraries/LibWeb/CodeGenerators/CMakeLists.txt index 3e6f8372e0..b3c4073df9 100644 --- a/Libraries/LibWeb/CodeGenerators/CMakeLists.txt +++ b/Libraries/LibWeb/CodeGenerators/CMakeLists.txt @@ -1,7 +1,11 @@ add_executable(Generate_CSS_PropertyID_h Generate_CSS_PropertyID_h.cpp) add_executable(Generate_CSS_PropertyID_cpp Generate_CSS_PropertyID_cpp.cpp) +add_executable(Generate_CSS_ValueID_h Generate_CSS_ValueID_h.cpp) +add_executable(Generate_CSS_ValueID_cpp Generate_CSS_ValueID_cpp.cpp) add_executable(WrapperGenerator WrapperGenerator.cpp) target_compile_options(WrapperGenerator PUBLIC -g) target_link_libraries(Generate_CSS_PropertyID_h LagomCore) target_link_libraries(Generate_CSS_PropertyID_cpp LagomCore) +target_link_libraries(Generate_CSS_ValueID_h LagomCore) +target_link_libraries(Generate_CSS_ValueID_cpp LagomCore) target_link_libraries(WrapperGenerator LagomCore) |