|
Revision 235, 0.9 kB
(checked in by smidl, 17 years ago)
|
|
compilation fixes for multicore
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | # Make sure the compiler can find include files from our Bdm library. |
|---|
| 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. |
|---|
| 9 | |
|---|
| 10 | # BASIC EXECS |
|---|
| 11 | EXEC(rv_test) |
|---|
| 12 | EXEC(datalink_test) |
|---|
| 13 | EXEC(loggers_test) |
|---|
| 14 | |
|---|
| 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) |
|---|
| 23 | |
|---|
| 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) |
|---|
| 31 | |
|---|
| 32 | EXEC(testKF) |
|---|
| 33 | EXEC(testPF) |
|---|
| 34 | EXEC(testSmp) |
|---|
| 35 | EXEC(testEpdf) |
|---|
| 36 | EXEC(testKF_QR) |
|---|
| 37 | EXEC(testKF_QRexh) |
|---|
| 38 | |
|---|
| 39 | EXEC(blas_test) |
|---|
| 40 | |
|---|
| 41 | IF(${XERCES_FOUND}) |
|---|
| 42 | EXEC(testUI) |
|---|
| 43 | target_link_libraries (testUI ${XERCES_LIBRARIES}) |
|---|
| 44 | ENDIF(${XERCES_FOUND}) |
|---|