Warning, /education/labplot/tests/matrix/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 option(ENABLE_TEST_MATRIX "Enable Matrix Tests" ON) 0002 0003 if (ENABLE_TEST_MATRIX) 0004 0005 add_executable (MatrixTest MatrixTest.cpp) 0006 0007 target_link_libraries(MatrixTest labplot2backendlib labplot2lib labplot2nsllib labplot2test) 0008 0009 add_test(NAME MatrixTest COMMAND MatrixTest) 0010 0011 add_executable (MatrixFormulaTest MatrixFormulaTest.cpp) 0012 0013 target_link_libraries(MatrixFormulaTest labplot2backendlib labplot2lib labplot2nsllib labplot2test) 0014 0015 add_test(NAME MatrixFormulaTest COMMAND MatrixFormulaTest) 0016 0017 endif()