Home | History | Annotate | Download | only in dh
      1 include_directories(. .. ../../include)
      2 
      3 add_library(
      4   dh
      5 
      6   OBJECT
      7 
      8   dh.c
      9   dh_impl.c
     10   params.c
     11   check.c
     12   dh_asn1.c
     13 )
     14 
     15 add_executable(
     16   dh_test
     17 
     18   dh_test.cc
     19 
     20   $<TARGET_OBJECTS:test_support>
     21 )
     22 
     23 target_link_libraries(dh_test crypto)
     24