1include_directories(../../include) 2 3add_library( 4 obj 5 6 OBJECT 7 8 obj.c 9 obj_xref.c 10) 11 12add_executable( 13 obj_test 14 15 obj_test.cc 16 17 $<TARGET_OBJECTS:test_support> 18) 19 20target_link_libraries(obj_test crypto) 21add_dependencies(all_tests obj_test) 22