• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1include_directories(../../include)
2
3add_library(
4  dsa
5
6  OBJECT
7
8  dsa.c
9  dsa_asn1.c
10)
11
12add_executable(
13  dsa_test
14
15  dsa_test.c
16
17  $<TARGET_OBJECTS:test_support>
18)
19
20target_link_libraries(dsa_test crypto)
21add_dependencies(all_tests dsa_test)
22