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