aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2024-02-15 08:14:15 +0100
committerChristian Stenger <christian.stenger@qt.io>2024-02-15 08:25:48 +0000
commit9248bd827b3859e6898860c15a63c6cd57ca5434 (patch)
tree6aa3ce3882fa66181af80a6457fd242f1097e8f2
parent3e595a8d243cce1f2dd2c78cf4fed1f7dca6ea8a (diff)
Fix qbs build
Change-Id: I711d87b7409d19fc404bfb90d2e07b0fefe9ce1a Reviewed-by: Eike Ziller <eike.ziller@qt.io>
-rw-r--r--src/qlitehtml.qbs39
1 files changed, 31 insertions, 8 deletions
diff --git a/src/qlitehtml.qbs b/src/qlitehtml.qbs
index 43b3a13..677bcbe 100644
--- a/src/qlitehtml.qbs
+++ b/src/qlitehtml.qbs
@@ -119,13 +119,13 @@ Product {
name: "litehtml sources"
prefix: litehtmlHeaderDir + "/../../src/"
files: [
- "background.cpp",
- "box.cpp",
"codepoint.cpp",
- "context.cpp",
+ "css_borders.cpp",
"css_length.cpp",
+ "css_properties.cpp",
"css_selector.cpp",
"document.cpp",
+ "document_container.cpp",
"el_anchor.cpp",
"el_base.cpp",
"el_before_after.cpp",
@@ -137,7 +137,6 @@ Product {
"element.cpp",
"el_font.cpp",
"el_image.cpp",
- "el_li.cpp",
"el_link.cpp",
"el_para.cpp",
"el_script.cpp",
@@ -148,11 +147,23 @@ Product {
"el_text.cpp",
"el_title.cpp",
"el_tr.cpp",
+ "flex_item.cpp",
+ "flex_line.cpp",
+ "formatting_context.cpp",
"html.cpp",
"html_tag.cpp",
"iterators.cpp",
+ "line_box.cpp",
"media_query.cpp",
"num_cvt.cpp",
+ "render_block.cpp",
+ "render_block_context.cpp",
+ "render_flex.cpp",
+ "render_image.cpp",
+ "render_inline_context.cpp",
+ "render_item.cpp",
+ "render_table.cpp",
+ "string_id.cpp",
"strtod.cpp",
"style.cpp",
"stylesheet.cpp",
@@ -171,18 +182,17 @@ Product {
prefix: litehtmlHeaderDir + '/'
files: [
"../litehtml.h",
- "attributes.h",
"background.h",
"borders.h",
- "box.h",
"codepoint.h",
- "context.h",
"css_length.h",
"css_margins.h",
"css_offsets.h",
"css_position.h",
+ "css_properties.h",
"css_selector.h",
"document.h",
+ "document_container.h",
"el_anchor.h",
"el_base.h",
"el_before_after.h",
@@ -193,7 +203,6 @@ Product {
"el_div.h",
"el_font.h",
"el_image.h",
- "el_li.h",
"el_link.h",
"el_para.h",
"el_script.h",
@@ -205,12 +214,26 @@ Product {
"el_title.h",
"el_tr.h",
"element.h",
+ "flex_item.h",
+ "flex_line.h",
+ "formatting_context.h",
"html.h",
"html_tag.h",
"iterators.h",
+ "line_box.h",
+ "master_css.h",
"media_query.h",
"num_cvt.h",
"os_types.h",
+ "render_block.h",
+ "render_block_context.h",
+ "render_flex.h",
+ "render_image.h",
+ "render_inline.h",
+ "render_inline_context.h",
+ "render_item.h",
+ "render_table.h",
+ "string_id.h",
"style.h",
"stylesheet.h",
"table.h",