Работа с doxygen

This commit is contained in:
2026-05-25 02:19:35 +05:00
parent 44dc59a365
commit 3627328e04
6 changed files with 12 additions and 24 deletions
+1
View File
@@ -11,6 +11,7 @@ CTestTestfile.cmake
_deps _deps
CMakeUserPresets.json CMakeUserPresets.json
docs docs
Doxylocal
# CLion # CLion
+1 -1
View File
@@ -68,7 +68,7 @@ PROJECT_LOGO =
# entered, it will be relative to the location where doxygen was started. If # entered, it will be relative to the location where doxygen was started. If
# left blank the current directory will be used. # left blank the current directory will be used.
OUTPUT_DIRECTORY =/var/www/neurox.su/docs OUTPUT_DIRECTORY =docs
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096
# sub-directories (in 2 levels) under the output directory of each output format # sub-directories (in 2 levels) under the output directory of each output format
+4 -3
View File
@@ -3,9 +3,10 @@
# NeurOX: Крестики‑нолики с ИИ или войти в IT # NeurOX: Крестики‑нолики с ИИ или войти в IT
| | | | | |
|------------------:|:-------------------------------------------| |------------------:|:----------------------------------------------------------------------------------|
|**Документация:** | [https://neurox.su](https://neurox.su) | | **Репозиторий:** | [https://felexdev.ru/git/felex67/neurox](https://felexdev.ru/git/felex67/neurox) |
| **Блог:** | [https://felexdev.ru](https://felexdev.ru) | |**Документация:** | [https://neurox.su](https://neurox.su) |
| **Блог:** | [https://felexdev.ru](https://felexdev.ru) |
## Цель проекта ## Цель проекта
Executable
+4
View File
@@ -0,0 +1,4 @@
#!/bin/bash
rm -rf /var/www/neurox.su/docs
doxygen Doxylocal
+1 -19
View File
@@ -1,23 +1,5 @@
var isInMobile = false; var isInMobile = false;
function jsinject_init() { function jsinject_init() {
let navy = document.getElementById('side-nav'); // Скоро зде что-нибудь появится =)
if (visualViewport.width < visualViewport.height) {
document.body.style.width = '100%';
navy.style.width = '6px';
navy.onclick = (function () {
if (navy.clientWidth > 0) {
navy.style.width = 0;
}
else {
navy.style.width = document.body.clientWidth + 'px';
}
});
isInMobile = true;
}
else {
document.body.style.width = '80%';
document.body.style.margin = 'auto';
navy.style.marginLeft = document.body.clientLeft + 'px';
}
} }