#Create variable SRCFiles containing a list of all header files in this directory
file(GLOB HFiles *.h)

#Installation of the header files
INSTALL(FILES ${HFiles}
         DESTINATION include
         PERMISSIONS OWNER_READ GROUP_READ WORLD_READ)