blob: f8e8a71058eb6844fffedf9a8f648788089d3531 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
cmake_minimum_required(VERSION 3.11)
project(libcroco C)
find_package(Iconv REQUIRED)
find_package(Intl REQUIRED)
find_package(unofficial-glib CONFIG REQUIRED)
find_package(LibXml2 REQUIRED)
if(NOT WIN32)
find_package(Threads REQUIRED)
endif()
find_path(GLIB_INCLUDE_DIR glib.h)
file(GLOB SOURCES
src/cr-utils.c
src/cr-utils.h
src/cr-input.c
src/cr-input.h
src/cr-enc-handler.c
src/cr-enc-handler.h
src/cr-num.c
src/cr-num.h
src/cr-rgb.c
src/cr-rgb.h
src/cr-token.c
src/cr-token.h
src/cr-tknzr.c
src/cr-tknzr.h
src/cr-term.c
src/cr-term.h
src/cr-attr-sel.c
src/cr-attr-sel.h
src/cr-pseudo.c
src/cr-pseudo.h
src/cr-additional-sel.c
src/cr-additional-sel.h
src/cr-simple-sel.c
src/cr-simple-sel.h
src/cr-selector.c
src/cr-selector.h
src/cr-doc-handler.c
src/cr-doc-handler.h
src/cr-parser.c
src/cr-parser.h
src/cr-declaration.c
src/cr-declaration.h
src/cr-statement.c
src/cr-statement.h
src/cr-stylesheet.c
src/cr-stylesheet.h
src/cr-cascade.c
src/cr-cascade.h
src/cr-om-parser.c
src/cr-om-parser.h
src/cr-style.c
src/cr-style.h
src/cr-sel-eng.c
src/cr-sel-eng.h
src/cr-fonts.c
src/cr-fonts.h
src/cr-prop-list.c
src/cr-prop-list.h
src/cr-parsing-location.c
src/cr-parsing-location.h
src/cr-string.c
src/cr-string.h
src/libcroco.def
)
set(CMAKE_DEBUG_POSTFIX "d")
add_library(croco-0.6 ${SOURCES})
target_include_directories(croco-0.6 PRIVATE ${GLIB_INCLUDE_DIR} ${LIBXML2_INCLUDE_DIR})
target_link_libraries(croco-0.6 PRIVATE
unofficial::glib::gio
unofficial::glib::glib
unofficial::glib::gmodule
unofficial::glib::gobject
${LIBXML2_LIBRARIES} ${Intl_LIBRARIES} Iconv::Iconv
)
install(TARGETS croco-0.6
EXPORT libcroco-targets
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
install(FILES
src/libcroco.h
src/cr-additional-sel.h
src/cr-attr-sel.h
src/cr-cascade.h
src/cr-declaration.h
src/cr-doc-handler.h
src/cr-enc-handler.h
src/cr-input.h
src/cr-num.h
src/cr-om-parser.h
src/cr-parser.h
src/cr-pseudo.h
src/cr-rgb.h
src/cr-selector.h
src/cr-simple-sel.h
src/cr-statement.h
src/cr-stylesheet.h
src/cr-term.h
src/cr-tknzr.h
src/cr-token.h
src/cr-utils.h
src/cr-fonts.h
src/cr-sel-eng.h
src/cr-style.h
src/cr-prop-list.h
src/cr-parsing-location.h
src/cr-string.h
src/libcroco-config.h
DESTINATION include/libcroco
)
install(
EXPORT libcroco-targets
NAMESPACE unofficial::libcroco::
FILE unofficial-libcroco-targets.cmake
DESTINATION share/unofficial-libcroco
)
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/unofficial-libcroco-config.cmake "
include(CMakeFindDependencyMacro)
find_dependency(Intl)
find_dependency(Iconv)
find_dependency(unofficial-glib CONFIG)
find_dependency(LibXml2)
if(NOT WIN32)
find_dependency(Threads)
endif()
include(\${CMAKE_CURRENT_LIST_DIR}/unofficial-libcroco-targets.cmake)
")
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/unofficial-libcroco-config.cmake DESTINATION share/unofficial-libcroco)
|