# The name of our project is "BDM". CMakeLists files in this project can # refer to the root source directory of the project as ${BDM_SOURCE_DIR} and # to the root binary directory of the project as ${BDM_BINARY_DIR}. project (BDM) #This is for UNIX makefile which does only one release at a time. SET(CMAKE_BUILD_TYPE Debug) # Recurse into the "dbm" and "tests" subdirectories. This does not actually # cause another cmake executable to run. The same process will walk through # the project's entire directory structure. add_subdirectory (bdm) add_subdirectory (tests)