summaryrefslogtreecommitdiffstats
path: root/src/util/CMakeLists.txt
blob: d5f4433546d83e8b503e4f1344a478ec77987381 (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
# SPDX-License-Identifier: GPL-2.0-or-later

set(util_SRC
	expression-evaluator.cpp
	share.cpp
	paper.cpp
	preview.cpp
	units.cpp
	ziptool.cpp


	# -------
	# Headers
	const_char_ptr.h
	enums.h
	expression-evaluator.h
	fixed_point.h
	format.h
	forward-pointer-iterator.h
	longest-common-suffix.h
	pages-skeleton.h
	paper.h
	preview.h
	reference.h
	share.h
	signal-blocker.h
	trim.h
	units.h
	ziptool.h
)

add_inkscape_lib(util_LIB "${util_SRC}")
target_link_libraries(util_LIB PUBLIC 2Geom::2geom)
# add_inkscape_source("${util_SRC}")