summaryrefslogtreecommitdiffstats
path: root/src/io/CMakeLists.txt
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2018-10-13 07:37:26 +0000
committerTavmjong Bah <tavmjong@free.fr>2018-10-13 07:37:26 +0000
commitfaf43f2ffa88561acb95909861bb28fcdfaeb858 (patch)
tree77f397b880ec970981a754c9549b24842161855b /src/io/CMakeLists.txt
parentCI/AppVeyor: increase clone depth (diff)
downloadinkscape-faf43f2ffa88561acb95909861bb28fcdfaeb858.tar.gz
inkscape-faf43f2ffa88561acb95909861bb28fcdfaeb858.zip
Move some files to 'io' directory.
Diffstat (limited to 'src/io/CMakeLists.txt')
-rw-r--r--src/io/CMakeLists.txt56
1 files changed, 34 insertions, 22 deletions
diff --git a/src/io/CMakeLists.txt b/src/io/CMakeLists.txt
index 380b983db..c816082b0 100644
--- a/src/io/CMakeLists.txt
+++ b/src/io/CMakeLists.txt
@@ -1,29 +1,41 @@
set(io_SRC
- base64stream.cpp
- bufferstream.cpp
- gzipstream.cpp
- inkscapestream.cpp
- resource.cpp
- stringstream.cpp
- sys.cpp
- http.cpp
- uristream.cpp
- xsltstream.cpp
+ base64stream.cpp
+ bufferstream.cpp
+ dir-util.cpp
+ gzipstream.cpp
+ inkscapestream.cpp
+ resource.cpp
+ resource-manager.cpp
+ stringstream.cpp
+ sys.cpp
+ http.cpp
+ uristream.cpp
+ xsltstream.cpp
- # -------
- # Headers
- base64stream.h
- bufferstream.h
- gzipstream.h
- inkscapestream.h
- resource.h
- stringstream.h
- sys.h
- http.h
- uristream.h
- xsltstream.h
+ # -------
+ # Headers
+ base64stream.h
+ bufferstream.h
+ dir-util.h
+ gzipstream.h
+ inkscapestream.h
+ resource.h
+ resource-manager.h
+ stringstream.h
+ sys.h
+ http.h
+ uristream.h
+ xsltstream.h
)
+if(WIN32)
+ # Sources for the inkscape executable on Windows.
+ list(APPEND io_SRC
+ registrytool.h
+ registrytool.cpp
+ )
+endif()
+
# add_inkscape_lib(io_LIB "${io_SRC}")
add_inkscape_source("${io_SRC}")