11 lines
257 B
CMake
11 lines
257 B
CMake
if((${LIBC_TARGET_OS} STREQUAL "linux") AND (${LIBC_TARGET_MACHINE} MATCHES "i386|x86_64"))
|
|
add_libc_unittest(
|
|
x86_long_double_test
|
|
SRCS
|
|
x86_long_double_test.cpp
|
|
DEPENDS
|
|
libc.include.math
|
|
libc.utils.FPUtil.fputil
|
|
)
|
|
endif()
|