Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,23 @@ if(NOT TARGET IFEM)
endif()
endif()

ifem_add_dependency_dir(APP Elasticity TARGET Elasticity)
ifem_add_dependency_dir(APP PoroElasticity DIR PoroElastic TARGET PoroElastic OPTIONAL)
ifem_add_dependency_dir(
APP
Elasticity
TARGET
Elasticity
DIR
Elasticity
)
ifem_add_dependency_dir(
APP
PoroElasticity
DIR
PoroElastic
TARGET
PoroElastic
OPTIONAL
)

ifem_add_library(
NAME
Expand Down Expand Up @@ -226,6 +241,9 @@ ifem_add_doc_target(
EXTRA_DIRS
${Elasticity_DIRECTORY}
${PoroElastic_DIRECTORY}
DEPENDENCIES
Elasticity
PoroElasticity
)

# Installation
Expand Down
4 changes: 2 additions & 2 deletions doc/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -1283,12 +1283,12 @@ SKIP_FUNCTION_MACROS = YES
# If a tag file is not located in the directory in which doxygen
# is run, you must also specify the path to the tagfile here.

TAGFILES =
TAGFILES = @DOXYGEN_TAG_FILES@

# When a file name is specified after GENERATE_TAGFILE, doxygen will create
# a tag file that is based on the input files it reads.

GENERATE_TAGFILE =
GENERATE_TAGFILE = @DOXYGEN_TAG_FILE@

# If the ALLEXTERNALS tag is set to YES all external classes will be listed
# in the class index. If set to NO only the inherited external classes
Expand Down