18 lines
171 B
CMake
18 lines
171 B
CMake
|
include_directories(. .. ../../include)
|
||
|
|
||
|
add_library(
|
||
|
cmac
|
||
|
|
||
|
OBJECT
|
||
|
|
||
|
cmac.c
|
||
|
)
|
||
|
|
||
|
add_executable(
|
||
|
cmac_test
|
||
|
|
||
|
cmac_test.cc
|
||
|
)
|
||
|
|
||
|
target_link_libraries(cmac_test crypto)
|