llvm-project/libc/utils/FPUtil/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
439 B
CMake
Raw Normal View History

if(${LIBC_TARGET_MACHINE} MATCHES "^x86.*")
set(LONG_DOUBLE_HDR LongDoubleBitsX86.h)
else()
set(LONG_DOUBLE_HDR)
endif()
add_header_library(
fputil
HDRS
${LONG_DOUBLE_HDR}
BasicOperations.h
BitPatterns.h
ClassificationFunctions.h
FloatOperations.h
FloatProperties.h
FPBits.h
BasicOperations.h
ManipulationFunctions.h
NearestIntegerOperations.h
DEPENDS
libc.utils.CPP.standalone_cpp
)