Skip to content

Commit

Permalink
Install the tutorials directory
Browse files Browse the repository at this point in the history
  • Loading branch information
loganharbour committed Jul 23, 2024
1 parent ea14747 commit db8bf0c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ APPLICATION_NAME := cardinal
BUILD_EXEC := yes
GEN_REVISION := no
DEP_APPS := $(shell $(FRAMEWORK_DIR)/scripts/find_dep_apps.py $(APPLICATION_NAME))
INSTALLABLE_DIRS := test/tests->tests tutorials

ifeq ($(ENABLE_DAGMC), yes)
ENABLE_DAGMC := ON
Expand Down
2 changes: 2 additions & 0 deletions include/base/CardinalApp.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ class CardinalApp : public MooseApp
static void registerApps();
static void registerAll(Factory & f, ActionFactory & af, Syntax & s);
static void associateSyntaxInner(Syntax & syntax, ActionFactory & action_factory);

virtual std::string getInstallableInputs() const override;
};
6 changes: 6 additions & 0 deletions src/base/CardinalApp.C
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,12 @@ CardinalApp::associateSyntaxInner(Syntax & syntax, ActionFactory & /* action_fac
addTaskDependency("add_bulk_fluid_temperature_user_object", "add_heat_source_ic");
}

std::string
CardinalApp::getInstallableInputs() const
{
return CARDINAL_INSTALLABLE_DIRS;
}

/***************************************************************************************************
*********************** Dynamic Library Entry Points - DO NOT MODIFY ******************************
**************************************************************************************************/
Expand Down

0 comments on commit db8bf0c

Please sign in to comment.