1 # Build for the runtime interception helper library.
3 set(INTERCEPTION_SOURCES
7 interception_type_test.cpp
10 set(INTERCEPTION_HEADERS
17 include_directories(..)
19 set(INTERCEPTION_CFLAGS ${SANITIZER_COMMON_CFLAGS})
20 append_rtti_flag(OFF INTERCEPTION_CFLAGS)
22 add_compiler_rt_object_libraries(RTInterception
23 OS ${SANITIZER_COMMON_SUPPORTED_OS}
24 ARCHS ${SANITIZER_COMMON_SUPPORTED_ARCH}
25 SOURCES ${INTERCEPTION_SOURCES}
26 ADDITIONAL_HEADERS ${INTERCEPTION_HEADERS}
27 CFLAGS ${INTERCEPTION_CFLAGS})
29 if(COMPILER_RT_INCLUDE_TESTS)
30 add_subdirectory(tests)