Créez un fichier index.html.cmake dans le dossier GenerationDocumentation/doc.
Voici à quoi il ressemble :
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html lang="fr">
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=utf8"></meta>
<title>@PROGRAM_NAME@ @PROGRAM_VERSION@ - Documentation</title>
<link rel="stylesheet" media="screen" type="text/css" title="Decoration" href="style.css" />
</head>
<body>
<h1>@PROGRAM_NAME@ @PROGRAM_VERSION@ - Documentation</h1>
<p>@PROGRAM_DESCRIPTION@</p>
<a href="./html/index.html">Voir la documentation générée par <b>Doxygen</b></a>
</body>
</html>
|
On pourrait se passer de ce fichier, mais si vous allez voir dans le dossier /home/votre_nom/usr/share/GenerationDocumentation/doc/html une fois l'installation faite, vous allez comprendre pourquoi.
Notez, au passage, que c'est du HTML 5.
|