aboutsummaryrefslogtreecommitdiff
path: root/include/omc.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-02-28 19:16:14 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-02-28 19:16:14 -0500
commitd5010cdff912411faa41ab997019b7929030356c (patch)
treeb214bf1bc67d31060e72a7d1932f193def5e746f /include/omc.h
parenta797d4faae5ed13fa8b3280a9566566040f0cece (diff)
downloadstasis-d5010cdff912411faa41ab997019b7929030356c.tar.gz
Document functions and usage
Diffstat (limited to 'include/omc.h')
-rw-r--r--include/omc.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/include/omc.h b/include/omc.h
index 86add4e..99e2eba 100644
--- a/include/omc.h
+++ b/include/omc.h
@@ -1,3 +1,4 @@
+//! @file omc.h
#ifndef OMC_OMC_H
#define OMC_OMC_H
@@ -46,15 +47,15 @@
}
struct OMC_GLOBAL {
- bool verbose;
- bool always_update_base_environment;
- bool continue_on_error;
- bool conda_fresh_start;
- struct StrList *conda_packages;
- struct StrList *pip_packages;
- char *tmpdir;
- char *conda_install_prefix;
- char *sysconfdir;
+ bool verbose; //!< Enable verbose output
+ bool always_update_base_environment; //!< Update base environment immediately after activation
+ bool continue_on_error; //!< Do not stop on test failures
+ bool conda_fresh_start; //!< Always install a new copy of Conda
+ struct StrList *conda_packages; //!< Conda packages to install after initial activation
+ struct StrList *pip_packages; //!< Pip packages to install after initial activation
+ char *tmpdir; //!< Path to temporary storage directory
+ char *conda_install_prefix; //!< Path to install conda
+ char *sysconfdir; //!< Path where OMC reads its configuration files (mission directory, etc)
struct Jfrog {
char *jfrog_artifactory_base_url;
char *jfrog_artifactory_product;