summaryrefslogtreecommitdiff
path: root/src/support/CMakeLists.txt
blob: 0d9350305b6fe371cd17226101789760f125a776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FILE(GLOB support_HEADERS *.h)
set(support_SOURCES
  archive.cpp
  bits.cpp
  colors.cpp
  command-line.cpp
  debug.cpp
  file.cpp
  path.cpp
  safe_integer.cpp
  threads.cpp
  utilities.cpp
  ${support_HEADERS}
)
add_library(support OBJECT ${support_SOURCES})