root/CMakeLists.txt @ 19

Revision 19, 0.6 kB (checked in by smidl, 16 years ago)

Switch to CMake

  • Property svn:eol-style set to native
Line 
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}.
4project (BDM)
5
6#This is for UNIX makefile which does only one release at a time.
7SET(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.
12add_subdirectory (bdm)
13add_subdirectory (tests)
Note: See TracBrowser for help on using the browser.