project(boule Fortran C CXX)

CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
FIND_PACKAGE(Qt4 REQUIRED)

include(${QT_USE_FILE})

include_directories(include)

enable_testing()

FIND_PACKAGE(Doxygen)
if (DOXYGEN_FOUND)
  OPTION( INSTALL_DOC "Set to OFF to skip build/install Documentation" ON )
else (DOXYGEN_FOUND)
  Message("Unable to find Doxygen to build/install Documentation")
endif (DOXYGEN_FOUND)

add_subdirectory(include)
add_subdirectory(src)
add_subdirectory(tests)
add_subdirectory (doc)
