blob: da4c0c535997754d70fba5cf5a2565482a00adef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#################################################
#
# (C) 2010 Serghei Amelian
# serghei (DOT) amelian (AT) gmail.com
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
add_definitions(
${TQT_CFLAGS_OTHER}
-include tqt.h
)
include_directories(
${TQT_INCLUDE_DIRS}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_BINARY_DIR}/kdecore
${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/khtml
${CMAKE_SOURCE_DIR}/kdecore
${CMAKE_SOURCE_DIR}/kdeui
${CMAKE_SOURCE_DIR}/kio
${CMAKE_SOURCE_DIR}/kio/kio
${CMAKE_SOURCE_DIR}/kio/kfile
${CMAKE_SOURCE_DIR}/kutils
)
##### khtmlrender-static #########################
set( target khtmlrender )
set( ${target}_SRCS
bidi.cpp break_lines.cpp render_block.cpp render_inline.cpp
render_style.cpp render_object.cpp render_container.cpp render_box.cpp
render_flow.cpp render_text.cpp render_arena.cpp render_layer.cpp
render_image.cpp render_table.cpp table_layout.cpp
render_replaced.cpp render_form.cpp render_list.cpp
render_canvas.cpp render_frames.cpp render_br.cpp
render_body.cpp font.cpp render_line.cpp render_generated.cpp
enumerate.cpp counter_tree.cpp
)
tde_add_library( ${target} STATIC_PIC AUTOMOC
SOURCES ${${target}_SRCS}
)
|