• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1include_directories(../../include)
2
3if(FIPS)
4  add_executable(
5    test_fips
6
7    test_fips.c
8  )
9
10  add_dependencies(test_fips global_target)
11  target_link_libraries(test_fips crypto)
12endif()
13