aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/digest/old_crc/CMakeLists.txt
blob: 3f6a09562208616bc109c313280026eaa56a84ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
add_library(cpp-digest-old_crc)
target_link_libraries(cpp-digest-old_crc PUBLIC
  contrib-libs-cxxsupp
  yutil
)
target_sources(cpp-digest-old_crc PRIVATE
  ${CMAKE_SOURCE_DIR}/library/cpp/digest/old_crc/crc.cpp
  ${CMAKE_BINARY_DIR}/library/cpp/digest/old_crc/crc.inc
)
add_custom_command(
  OUTPUT
  ${CMAKE_BINARY_DIR}/library/cpp/digest/old_crc/crc.inc
  DEPENDS
  ${CMAKE_BINARY_DIR}/library/cpp/digest/old_crc/gencrc/gencrc
  COMMAND
  ${CMAKE_BINARY_DIR}/library/cpp/digest/old_crc/gencrc/gencrc
  >
  crc.inc
)