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 $<TARGET_OBJECTS:test_support> 17) 18 19target_link_libraries(lhash_test crypto) 20