Revision 263, 0.9 kB
(checked in by smidl, 16 years ago)
|
UIArxDS test
|
-
Property svn:eol-style set to
native
|
Rev | Line | |
---|
[20] | 1 | # Make sure the compiler can find include files from our Bdm library. |
---|
[19] | 2 | include_directories (${BDM_SOURCE_DIR}/bdm) |
---|
| 3 | |
---|
| 4 | # Make sure the linker can find the Hello library once it is built. |
---|
| 5 | link_directories (${BDM_BINARY_DIR}/bdm) |
---|
| 6 | |
---|
| 7 | # Add executable called "helloDemo" that is built from the source files |
---|
| 8 | # "demo.cxx" and "demo_b.cxx". The extensions are automatically found. |
---|
[182] | 9 | |
---|
[222] | 10 | # BASIC EXECS |
---|
| 11 | EXEC(rv_test) |
---|
| 12 | EXEC(datalink_test) |
---|
| 13 | EXEC(loggers_test) |
---|
[182] | 14 | |
---|
[222] | 15 | EXEC(chmat_test) |
---|
| 16 | EXEC(ldmat_test) |
---|
| 17 | EXEC(fsqmat_test) |
---|
| 18 | EXEC(enorm_test) |
---|
| 19 | EXEC(egiw_test) |
---|
| 20 | EXEC(emix_test) |
---|
| 21 | EXEC(test0) |
---|
| 22 | EXEC(testResample) |
---|
[182] | 23 | |
---|
[222] | 24 | # ESTIM EXECS |
---|
| 25 | EXEC(arx_test) |
---|
| 26 | EXEC(arx_elem_test) |
---|
| 27 | EXEC(merger_test) |
---|
| 28 | EXEC(merger_2d_test) |
---|
| 29 | EXEC(merger_iter_test) |
---|
| 30 | EXEC(mixef_test) |
---|
[182] | 31 | |
---|
[222] | 32 | EXEC(testKF) |
---|
| 33 | EXEC(testPF) |
---|
| 34 | EXEC(testSmp) |
---|
| 35 | EXEC(testEpdf) |
---|
| 36 | EXEC(testKF_QR) |
---|
| 37 | EXEC(testKF_QRexh) |
---|
[82] | 38 | |
---|
[222] | 39 | EXEC(blas_test) |
---|
[125] | 40 | |
---|
[235] | 41 | IF(${XERCES_FOUND}) |
---|
[247] | 42 | EXEC(testUI) |
---|
| 43 | target_link_libraries (testUI ${XERCES_LIBRARIES}) |
---|
[235] | 44 | ENDIF(${XERCES_FOUND}) |
---|
[249] | 45 | |
---|
[263] | 46 | add_subdirectory(UI) |
---|