blob: eabef915b16cb953d0d9e4f6fdb61c8f63004a8c (
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
|
add_compile_options(-DLUA_CORE)
set(luametatex_sources
source/luametatex.c
)
add_executable(luametatex ${luametatex_sources})
target_include_directories(luametatex PRIVATE
.
source/.
source/luacore/lua54/src
)
target_link_libraries(luametatex
tex
lua
mp
luarest
luasocket
luaoptional
pplib
miniz
)
if (LUAMETATEX_NOLDL)
# mingw ucrt
else()
target_link_libraries(luametatex
${CMAKE_DL_LIBS}
)
endif()
install(TARGETS luametatex
EXPORT luametatex
RUNTIME
DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT luametatex_runtime
)
if (luametatex_use_mimalloc)
target_include_directories(luametatex PRIVATE
source/libraries/mimalloc/include
)
target_link_libraries(luametatex
mimalloc
)
if (LUAMETATEX_MINGW)
target_link_libraries(luametatex --static)
target_link_libraries(luametatex
pthread
psapi
bcrypt
)
elseif (NOT MSVC)
target_link_libraries(luametatex
pthread
)
endif()
endif()
if (NOT MSVC)
target_link_libraries(luametatex
m
)
endif()
if (${CMAKE_HOST_SOLARIS})
target_link_libraries(luametatex
rt
socket
nsl
resolv
)
endif()
if (DEFINED LMT_OPTIMIZE)
# we strip anyway
elseif (CMAKE_HOST_SOLARIS)
# no strip
elseif (CMAKE_C_COMPILER_ID MATCHES "GNU")
# -g -S -d : remove all debugging symbols & sections
# -x : remove all non-global symbols
# -X : remove any compiler-generated symbols
add_custom_command(TARGET luametatex POST_BUILD COMMAND ${CMAKE_STRIP} -g -S -d -x luametatex${CMAKE_EXECUTABLE_SUFFIX})
endif()
|