Added cmake support, deleted Autoconf/Automake stuff and made an easy-to-use process

This commit is contained in:
tlegrand 2007-09-13 13:36:13 +00:00
commit 292f9cfd2a
3 changed files with 93 additions and 11 deletions

View file

@ -14,7 +14,27 @@ ENABLE_LANGUAGE(CXX)
######################################################################################
### 2) Where must cmake go now ?
### 2) We need to know where EO is installed
######################################################################################
IF(NOT EO_SOURCE_DIR)
SET( EO_SOURCE_DIR
EO_SRC_DIR CACHE STRING
"EO source directory"
FORCE)
ENDIF(NOT EO_SOURCE_DIR)
IF(NOT EO_BINARY_DIR)
SET( EO_BINARY_DIR
EO_BIN_DIR CACHE STRING
"EO binary directory"
FORCE)
ENDIF(NOT EO_BINARY_DIR)
######################################################################################
######################################################################################
### 3) Where must cmake go now ?
######################################################################################
SUBDIRS(src)