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

include(${CMAKE_SOURCE_DIR}/CMakeScripts/UseGlibMarshal.cmake)

GLIB_MARSHAL(sp_marshal sp-marshal "${CMAKE_CURRENT_BINARY_DIR}/helper")

set(sp_marshal_SRC
	${CMAKE_CURRENT_BINARY_DIR}/sp-marshal.cpp
	${CMAKE_CURRENT_BINARY_DIR}/sp-marshal.h
)

set(helper_SRC
	action.cpp
	action-context.cpp
	geom.cpp
	geom-nodetype.cpp
	geom-pathstroke.cpp
	geom-pathvectorsatellites.cpp
	geom-satellite.cpp
	gettext.cpp
	pixbuf-ops.cpp
	png-write.cpp
	stock-items.cpp
        verb-action.cpp
	#units-test.cpp

	# we generate this file and it's .h counter-part
	${sp_marshal_SRC}


	# -------
	# Headers
	action.h
	action-context.h
	geom-curves.h
	geom-nodetype.h
	geom-pathstroke.h
	geom-pathvectorsatellites.h
	geom-satellite.h
	geom.h
	gettext.h
	mathfns.h
	pixbuf-ops.h
	png-write.h
	stock-items.h
        verb-action.h
)

set_source_files_properties(sp_marshal_SRC PROPERTIES GENERATED true)

# add_inkscape_lib(helper_LIB "${helper_SRC}")
add_inkscape_source("${helper_SRC}")