-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cmake_split_LIE' into 'master'
[CMake] Split LIE to LIE_M and LIE_HM for optional compilation See merge request ogs/ogs!5146
- Loading branch information
Showing
8 changed files
with
66 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
get_source_files(SOURCES) | ||
append_source_files(SOURCES LocalAssembler) | ||
|
||
ogs_add_library(LIE_HM ${SOURCES}) | ||
target_link_libraries(LIE_HM PUBLIC ProcessLib LIECommon PRIVATE ParameterLib) | ||
|
||
target_precompile_headers(LIE_HM PRIVATE [["BaseLib/Error.h"]] | ||
[["BaseLib/ConfigTree.h"]] [["BaseLib/Logging.h"]] | ||
[["ProcessLib/Process.h"]] [["MaterialLib/MPL/Medium.h"]] | ||
[["MaterialLib/MPL/Property.h"]] <Eigen/Core>) | ||
|
||
if(OGS_BUILD_TESTING) | ||
include(Tests.cmake) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
get_source_files(SOURCES) | ||
append_source_files(SOURCES LocalAssembler) | ||
|
||
ogs_add_library(LIE_M ${SOURCES}) | ||
target_link_libraries(LIE_M PUBLIC ProcessLib LIECommon PRIVATE ParameterLib) | ||
|
||
target_precompile_headers(LIE_M PRIVATE [["BaseLib/Error.h"]] | ||
[["BaseLib/ConfigTree.h"]] [["BaseLib/Logging.h"]] | ||
[["ProcessLib/Process.h"]] [["MaterialLib/MPL/Medium.h"]] | ||
[["MaterialLib/MPL/Property.h"]] <Eigen/Core>) | ||
|
||
if(OGS_BUILD_TESTING) | ||
include(Tests.cmake) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters