# Make sure the compiler can find include files from our Bdm library. include_directories (${BDM_SOURCE_DIR}/bdm) # Make sure the linker can find the Hello library once it is built. link_directories (${BDM_BINARY_DIR}/bdm) # Add executable called "helloDemo" that is built from the source files # "demo.cxx" and "demo_b.cxx". The extensions are automatically found. # BASIC EXECS EXEC(rv_test) EXEC(datalink_test) EXEC(loggers_test) EXEC(chmat_test) EXEC(ldmat_test) EXEC(fsqmat_test) EXEC(enorm_test) EXEC(egiw_test) EXEC(emix_test) EXEC(test0) EXEC(testResample) # ESTIM EXECS EXEC(arx_test) EXEC(arx_elem_test) EXEC(merger_test) EXEC(merger_2d_test) EXEC(merger_iter_test) EXEC(mixef_test) EXEC(testKF) EXEC(testPF) EXEC(testSmp) EXEC(testEpdf) EXEC(testKF_QR) EXEC(testKF_QRexh) EXEC(blas_test) IF(${XERCES_FOUND}) EXEC(testUI) target_link_libraries (testUI ${XERCES_LIBRARIES}) ENDIF(${XERCES_FOUND}) add_subdirectory(UI) add_subdirectory(tutorial)