blob: 8ebd80c5ff59bd0eb1f24c27e0cf7f4f1b0998c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include_directories(. .. ../../include)
add_library(
cmac
OBJECT
cmac.c
)
add_executable(
cmac_test
cmac_test.cc
)
target_link_libraries(cmac_test crypto)
|