blob: bf20e91885688dcba2cb071009f52acc75519503 (
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
|
# Setup GTK UI library...
file(GLOB headers *.h)
set(sources
bitmap.c
boxes.c
button.c
color.c
control.c
droplist.c
filesel.c
font.c
help.c
lines.c
list.c
liststore.c
main.c
menu.c
message.c
notice.c
pixbuf.c
png.c
print.c
single.c
splash.c
statusbar.c
text.c
timer.c
tooltip.c
treeview.c
util.c
window.c
wpref.c
# end of refactored sources
gtkdraw-cairo.c
)
# help system is OS and build specific, add appropriate source files
if(APPLE)
set(sources
${sources}
osxhelp.c)
else()
if(XTRKCAD_USE_BROWSER)
set(sources
${sources}
browserhelp.c)
else()
set(sources
${sources}
ixhelp.c)
endif()
endif()
include_directories(${XTrkCAD_BINARY_DIR})
add_library(xtrkcad-wlib ${headers} ${sources})
# GTK
include_directories(${GTK_INCLUDE_DIRS})
target_link_libraries(xtrkcad-wlib ${GTK_LIBRARIES})
# configure for GTK's native Unix print
find_package (GTKUnixPrint)
include_directories(${GTK_UNIX_PRINT_INCLUDE_DIRS})
target_link_libraries(xtrkcad-wlib ${GTK_UNIX_PRINT_LIBRARIES})
# add dependency to webkit if configured
if(NOT XTRKCAD_USE_BROWSER)
include_directories(${GTK_WEBKIT_INCLUDE_DIRS})
target_link_libraries(xtrkcad-wlib ${GTK_WEBKIT_LIBRARIES})
endif()
|