
######################################################################################
### 0) Include the install configuration file where are defined the main variables
######################################################################################

INCLUDE(${CMAKE_SOURCE_DIR}/install.cmake)

######################################################################################


######################################################################################
### 1) Set your application properties
######################################################################################

# Define the project name
PROJECT(CVRP-TW)

SET(PACKAGE_NAME "CVRP-TW" CACHE STRING "Package name" FORCE)
SET(PACKAGE_VERSION "1.0" CACHE STRING "Package version" FORCE)
######################################################################################


######################################################################################
### 2) Find the required modukes
######################################################################################

# Need to find Doxygen to generate the documentation
INCLUDE(FindDoxygen)

######################################################################################


######################################################################################
### 3) Link the librairies for your executable
######################################################################################

SUBDIRS(application doc src)

######################################################################################






