1include_directories(. .. ../../include)
2
3add_library(
4	lhash
5
6	OBJECT
7
8	lhash.c
9)
10
11add_executable(
12	lhash_test
13
14	lhash_test.c
15)
16
17target_link_libraries(lhash_test crypto)
18