summaryrefslogtreecommitdiffstats
path: root/Utilities/cmlibrhash/CMakeLists.txt
blob: 47d069ae0b002d95613a31c901c2932fa81b7272 (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
project(librhash C)

set(librhash_sources
  librhash/algorithms.c
  librhash/algorithms.h
  librhash/byte_order.c
  librhash/byte_order.h
  librhash/hex.c
  librhash/hex.h
  librhash/md5.c
  librhash/md5.h
  librhash/rhash.c
  librhash/rhash.h
  librhash/sha1.c
  librhash/sha1.h
  librhash/sha256.c
  librhash/sha256.h
  librhash/sha512.c
  librhash/sha512.h
  librhash/ustd.h
  librhash/util.h
  )

include_directories(
  ${KWSYS_HEADER_ROOT}
  )

add_library(cmlibrhash ${librhash_sources})