32 lines
566 B
CMake
32 lines
566 B
CMake
|
# yue.nicholas@gmail.com
|
||
|
|
||
|
ADD_EXECUTABLE ( ImathTest
|
||
|
main.cpp
|
||
|
testBox.cpp
|
||
|
testBoxAlgo.cpp
|
||
|
testColor.cpp
|
||
|
testExtractEuler.cpp
|
||
|
testExtractSHRT.cpp
|
||
|
testFrustum.cpp
|
||
|
testFrustumTest.cpp
|
||
|
testFun.cpp
|
||
|
testInvert.cpp
|
||
|
testJacobiEigenSolver.cpp
|
||
|
testLineAlgo.cpp
|
||
|
testMatrix.cpp
|
||
|
testMiscMatrixAlgo.cpp
|
||
|
testProcrustes.cpp
|
||
|
testQuat.cpp
|
||
|
testQuatSetRotation.cpp
|
||
|
testQuatSlerp.cpp
|
||
|
testRandom.cpp
|
||
|
testRoots.cpp
|
||
|
testShear.cpp
|
||
|
testTinySVD.cpp
|
||
|
testVec.cpp
|
||
|
)
|
||
|
|
||
|
ADD_TEST ( TestImath ImathTest )
|
||
|
TARGET_LINK_LIBRARIES ( ImathTest Imath Iex )
|
||
|
|