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
|
add_subdirectory(filesystem)
wl_library(io_stream
SRCS
machdep.h
streamread.cc
streamread.h
streamwrite.cc
streamwrite.h
USES_SDL2
DEPENDS
base_exceptions
base_macros
)
wl_library(io_fileread
SRCS
fileread.cc
fileread.h
filewrite.cc
filewrite.h
DEPENDS
io_filesystem
io_stream
)
wl_library(io_profile
SRCS
profile.h
profile.cc
DEPENDS
base_exceptions
base_geometry
base_i18n
base_log
base_macros
base_string
build_info
io_fileread
io_filesystem
)
|