Revision 161, 0.7 kB
(checked in by smidl, 16 years ago)
|
initial version of experiment with merging
|
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 | ## Save all needed libraries in variable BdmLibs |
---|
8 | #SET(BdmLibs bdm itpp_debug) |
---|
9 | SET(BdmLibs bdm itpp) |
---|
10 | SET(ITppLibs itpp) |
---|
11 | |
---|
12 | IF(WIN32) |
---|
13 | SET(BdmLibs ${BdmLibs} libacml_dll) |
---|
14 | SET(ITppLibs ${ITppLibs} libacml_dll) |
---|
15 | ENDIF(WIN32) |
---|
16 | |
---|
17 | # Add executable called "helloDemo" that is built from the source files |
---|
18 | # "demo.cxx" and "demo_b.cxx". The extensions are automatically found. |
---|
19 | add_executable (merg_pred merg_pred.cpp) |
---|
20 | target_link_libraries (merg_pred ${BdmLibs}) |
---|