Revision 19, 0.6 kB
(checked in by smidl, 17 years ago)
|
Switch to CMake
|
-
Property svn:eol-style set to
native
|
Rev | Line | |
---|
[19] | 1 | # The name of our project is "BDM". CMakeLists files in this project can |
---|
| 2 | # refer to the root source directory of the project as ${BDM_SOURCE_DIR} and |
---|
| 3 | # to the root binary directory of the project as ${BDM_BINARY_DIR}. |
---|
| 4 | project (BDM) |
---|
| 5 | |
---|
| 6 | #This is for UNIX makefile which does only one release at a time. |
---|
| 7 | SET(CMAKE_BUILD_TYPE Debug) |
---|
| 8 | |
---|
| 9 | # Recurse into the "dbm" and "tests" subdirectories. This does not actually |
---|
| 10 | # cause another cmake executable to run. The same process will walk through |
---|
| 11 | # the project's entire directory structure. |
---|
| 12 | add_subdirectory (bdm) |
---|
| 13 | add_subdirectory (tests) |
---|