blob: 906e777305651407c128c8d72082aab344ab8ca0 (
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
|
# Copyright (c) the JPEG XL Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
add_library(lcms2 STATIC EXCLUDE_FROM_ALL
lcms/src/cmsalpha.c
lcms/src/cmscam02.c
lcms/src/cmscgats.c
lcms/src/cmscnvrt.c
lcms/src/cmserr.c
lcms/src/cmsgamma.c
lcms/src/cmsgmt.c
lcms/src/cmshalf.c
lcms/src/cmsintrp.c
lcms/src/cmsio0.c
lcms/src/cmsio1.c
lcms/src/cmslut.c
lcms/src/cmsmd5.c
lcms/src/cmsmtrx.c
lcms/src/cmsnamed.c
lcms/src/cmsopt.c
lcms/src/cmspack.c
lcms/src/cmspcs.c
lcms/src/cmsplugin.c
lcms/src/cmsps2.c
lcms/src/cmssamp.c
lcms/src/cmssm.c
lcms/src/cmstypes.c
lcms/src/cmsvirt.c
lcms/src/cmswtpnt.c
lcms/src/cmsxform.c
lcms/src/lcms2_internal.h
)
target_include_directories(lcms2
PUBLIC "${CMAKE_CURRENT_LIST_DIR}/lcms/include")
# This warning triggers with gcc-8.
if (${CMAKE_C_COMPILER_ID} MATCHES "GNU")
target_compile_options(lcms2
PRIVATE
# gcc-only flags.
-Wno-stringop-truncation
-Wno-strict-aliasing
)
endif()
# By default LCMS uses sizeof(void*) for memory alignment, but in arm 32-bits we
# can't access doubles not aligned to 8 bytes. This forces the alignment to 8
# bytes.
target_compile_definitions(lcms2
PRIVATE "-DCMS_PTR_ALIGNMENT=8")
target_compile_definitions(lcms2
PUBLIC "-DCMS_NO_REGISTER_KEYWORD=1")
set_property(TARGET lcms2 PROPERTY POSITION_INDEPENDENT_CODE ON)
|