summaryrefslogtreecommitdiffstats
path: root/src/io/CMakeLists.txt
blob: 51e0b2e3280a10823e537a77b387c7eb2b4d3bbb (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
set(io_SRC
  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
  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}")