![]() |
SimovaTrack V4.7.0
Simova Track codebase, written for testing and deployment for Simova
|
Variables | |
str | RED = '\033[91m' |
str | GREEN = '\033[92m' |
str | RESET = '\033[0m' |
current_directory = os.getenv("PWD") | |
str | doxyfile_rel_path = 'Doxyfile' |
doxyfile_abs_path = os.path.join(current_directory, doxyfile_rel_path) | |
list | command = ['doxygen', doxyfile_abs_path] |
result = subprocess.run(command, check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) | |
list build_doxygen.command = ['doxygen', doxyfile_abs_path] |
build_doxygen.current_directory = os.getenv("PWD") |
build_doxygen.doxyfile_abs_path = os.path.join(current_directory, doxyfile_rel_path) |
str build_doxygen.doxyfile_rel_path = 'Doxyfile' |
str build_doxygen.GREEN = '\033[92m' |
str build_doxygen.RED = '\033[91m' |
str build_doxygen.RESET = '\033[0m' |
build_doxygen.result = subprocess.run(command, check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) |