1 include_directories(../../include)
2
3 add_library(
4 lhash
5
6 OBJECT
7
8 lhash.c
9 )
10
11 add_executable(
12 lhash_test
13
14 lhash_test.c
15
16 $<TARGET_OBJECTS:test_support>
17 )
18
19 target_link_libraries(lhash_test crypto)
20 add_dependencies(all_tests lhash_test)
21