1if(CMAKE_HOST_UNIX) 2 set(EFFile ExecuteFunctionUnix.cpp) 3 set(FDReaderFile FDReaderUnix.cpp) 4endif() 5 6add_llvm_library( 7 libc_test_utils 8 RandUtils.cpp 9 RandUtils.h 10 StreamWrapper.cpp 11 StreamWrapper.h 12 ${EFFile} 13 ExecuteFunction.h 14 ${FDReaderFile} 15 FDReader.h 16 Timer.h 17 Timer.cpp 18) 19