Работа с 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
CMakeUserPresets.json
docs
Doxylocal
# CLion
+1 -1
View File
@@ -68,7 +68,7 @@ PROJECT_LOGO =
# entered, it will be relative to the location where doxygen was started. If
# 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
# sub-directories (in 2 levels) under the output directory of each output format
+2 -1
View File
@@ -3,7 +3,8 @@
# NeurOX: Крестики‑нолики с ИИ или войти в IT
| | |
|------------------:|:-------------------------------------------|
|------------------:|:----------------------------------------------------------------------------------|
| **Репозиторий:** | [https://felexdev.ru/git/felex67/neurox](https://felexdev.ru/git/felex67/neurox) |
|**Документация:** | [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;
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';
}
// Скоро зде что-нибудь появится =)
}