aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/digest/argonish/internal/proxies/sse2/CMakeLists.txt
blob: 9a547f77c89c6008c08fe744ce2ea84d2e0ef599 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
add_library(internal-proxies-sse2)
target_link_libraries(internal-proxies-sse2 PUBLIC
  contrib-libs-cxxsupp
  internal-proxies-macro
  argonish-internal-argon2
  argonish-internal-blake2b
)
target_sources(internal-proxies-sse2 PRIVATE
  ${CMAKE_SOURCE_DIR}/library/cpp/digest/argonish/internal/proxies/sse2/proxy_sse2.cpp
)
set_property(
  SOURCE
  ${CMAKE_SOURCE_DIR}/library/cpp/digest/argonish/internal/proxies/sse2/proxy_sse2.cpp
  APPEND
  PROPERTY
  COMPILE_OPTIONS
  -msse2
)