25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

21 satır
244 B

  1. include_directories(../../include)
  2. add_library(
  3. lhash
  4. OBJECT
  5. lhash.c
  6. )
  7. add_executable(
  8. lhash_test
  9. lhash_test.cc
  10. $<TARGET_OBJECTS:test_support>
  11. )
  12. target_link_libraries(lhash_test crypto)
  13. add_dependencies(all_tests lhash_test)