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