Home | History | Annotate | Download | only in ecdh
      1 include_directories(../../include)
      2 
      3 add_library(
      4   ecdh
      5 
      6   OBJECT
      7 
      8   ecdh.c
      9 )
     10 
     11 add_executable(
     12   ecdh_test
     13 
     14   ecdh_test.cc
     15 
     16   $<TARGET_OBJECTS:test_support>
     17 )
     18 
     19 target_link_libraries(ecdh_test crypto)
     20 add_dependencies(all_tests ecdh_test)
     21