####################################################################
# @{fmodskel_MAIN_PRJ}@
#
# CMake configuration file for @{fmodskel_PROJECT_NAME}@
####################################################################

cmake_minimum_required(VERSION 2.6)
project(@{fmodskel_PROJECT_NAME}@)

# find the falcon installation.  Set CMAKE_INSTALL_PREFIX to the falcon root 
# directory to make it work.
find_package(Falcon REQUIRED)

## process source directories
# add other subdirectories that contain libraries on which the final module depends here..
#add_subdirectory(awesome_library)
# ..before the module's source dir:
add_subdirectory(src)

# Documentation
add_subdirectory(docs)
