|
Revision 19, 0.6 kB
(checked in by smidl, 18 years ago)
|
|
Switch to CMake
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | # Make sure the compiler can find include files from our Hello 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 | add_executable (test0 test0.cpp) |
|---|
| 10 | add_executable (testKF testKF.cpp) |
|---|
| 11 | add_executable (testPF testPF.cpp) |
|---|
| 12 | |
|---|
| 13 | # Link the executable to the Hello library. |
|---|
| 14 | target_link_libraries (test0 bdm itpp) |
|---|
| 15 | target_link_libraries (testKF bdm itpp) |
|---|
| 16 | target_link_libraries (testPF bdm itpp) |
|---|