17 lines
276 B
CMake
17 lines
276 B
CMake
# yue.nicholas@gmail.com
|
|
|
|
ADD_EXECUTABLE ( HalfTest
|
|
main.cpp
|
|
testArithmetic.cpp
|
|
testBitPatterns.cpp
|
|
testClassification.cpp
|
|
testError.cpp
|
|
testFunction.cpp
|
|
testLimits.cpp
|
|
testSize.cpp
|
|
)
|
|
|
|
TARGET_LINK_LIBRARIES ( HalfTest Half )
|
|
|
|
ADD_TEST ( TestHalf HalfTest )
|