You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
172 B

  1. include_directories(. .. ../../include)
  2. add_library(
  3. err
  4. OBJECT
  5. err.c
  6. err_impl.c
  7. )
  8. add_executable(
  9. err_test
  10. err_test.c
  11. )
  12. target_link_libraries(err_test crypto)