blob: f70c3b8ec6a76e9ec19238c3025d4b12fd00a037 (
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
|
# -*- cmake -*-
include(Prebuilt)
include(FreeType)
include(GLIB)
add_library( ll::uilibraries INTERFACE IMPORTED )
if (LINUX OR CMAKE_SYSTEM_NAME MATCHES FreeBSD)
target_compile_definitions(ll::uilibraries INTERFACE LL_X11=1 )
if( USE_CONAN )
return()
endif()
include(FindPkgConfig)
pkg_check_modules(WAYLAND_CLIENT wayland-client)
if( WAYLAND_CLIENT_FOUND )
target_compile_definitions( ll::uilibraries INTERFACE LL_WAYLAND=1)
else()
message("pkgconfig could not find wayland client, compiling without full wayland support")
endif()
target_link_libraries( ll::uilibraries INTERFACE
Xrender
Xcursor
Xfixes
Xext
Xft
Xinerama
X11
ll::fontconfig
ll::freetype
ll::SDL2
ll::glib
ll::gio
)
endif (LINUX OR CMAKE_SYSTEM_NAME MATCHES FreeBSD)
if( WINDOWS )
target_link_libraries( ll::uilibraries INTERFACE
opengl32
comdlg32
dxguid
kernel32
odbc32
odbccp32
oleaut32
shell32
Vfw32
wer
winspool
imm32
)
endif()
if (NOT USESYSTEMLIBS)
target_include_directories( ll::uilibraries SYSTEM INTERFACE
${LIBS_PREBUILT_DIR}/include
)
endif ()
|