diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
commit | c853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch) | |
tree | 7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /src/helper/CMakeLists.txt | |
parent | Initial commit. (diff) | |
download | inkscape-upstream.tar.xz inkscape-upstream.zip |
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/helper/CMakeLists.txt')
-rw-r--r-- | src/helper/CMakeLists.txt | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/helper/CMakeLists.txt b/src/helper/CMakeLists.txt new file mode 100644 index 0000000..e8a92fe --- /dev/null +++ b/src/helper/CMakeLists.txt @@ -0,0 +1,51 @@ +# 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 + choose-file.cpp + geom.cpp + geom-nodetype.cpp + geom-pathstroke.cpp + geom-pathvector_nodesatellites.cpp + geom-nodesatellite.cpp + gettext.cpp + pixbuf-ops.cpp + png-write.cpp + save-image.cpp + stock-items.cpp + #units-test.cpp + + # we generate this file and it's .h counter-part + ${sp_marshal_SRC} + + + # ------- + # Headers + choose-file.h + geom-curves.h + geom-nodetype.h + geom-pathstroke.h + geom-pathvector_nodesatellites.h + geom-nodesatellite.h + geom.h + gettext.h + mathfns.h + pixbuf-ops.h + png-write.h + save-image.h + sigc-track-obj.h + stock-items.h +) + +set_source_files_properties(sp_marshal_SRC PROPERTIES GENERATED true) + +# add_inkscape_lib(helper_LIB "${helper_SRC}") +add_inkscape_source("${helper_SRC}") |