blob: 2758ee19897be8a633e7722d707e884446016015 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FILE(GLOB support_HEADERS *.h)
set(support_SOURCES
archive.cpp
bits.cpp
colors.cpp
command-line.cpp
debug.cpp
dfa_minimization.cpp
file.cpp
istring.cpp
path.cpp
safe_integer.cpp
threads.cpp
utilities.cpp
${support_HEADERS}
)
add_library(support OBJECT ${support_SOURCES})
|