#Declareing header directory for the project
#To add a new directory 
# -> list(APPEND PROJECT_HEADERS_DIR ${PROJECT_DIR}/YOUR_DESIRED_DIRECTORY)	
# list()				= List declaration "DON'T CHANGE"
# PROJECT_HEADERS_DIR	= Variable containing the listed direcotries "DON'T CHANCE
# ${PROJECT_DIR}		= Direcotry of the main project this is per default the current direcotry it is defined in ked/CMakeLists.txt 
list(APPEND PROJECT_ADDITIONAL_DIRS .)	

#Declaring sources to be compiled for the project. 
#CMake will look in each previsouly declarec sources directory until to find this files. 
set(PROJECT_TO_COMPILE_LIST)