Home | History | Annotate | Download | only in lhash
      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 
     17 target_link_libraries(lhash_test crypto)
     18