-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
252 additions
and
107 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ endif() | |
|
||
@PACKAGE_INIT@ | ||
|
||
include("@CMAKE_INSTALL_PREFIX@/lib/@CMAKE_PROJECT_NAME@/@[email protected]") | ||
include("@__asgard_install_prefix@/lib/@CMAKE_PROJECT_NAME@/@[email protected]") | ||
|
||
if ("@ASGARD_USE_MPI@" AND NOT TARGET MPI::MPI_CXX) | ||
if (NOT MPI_HOME AND NOT DEFINED ENV{MPI_HOME}) | ||
|
@@ -41,10 +41,13 @@ target_link_libraries (asgard::LINALG | |
|
||
if (@ASGARD_USE_HIGHFIVE@) | ||
enable_language (C) | ||
if (@__asgard_find_hdf5@) | ||
find_package (HDF5 REQUIRED) | ||
endif() | ||
endif() | ||
|
||
add_executable(asgard::exe IMPORTED) | ||
set_property(TARGET asgard::exe PROPERTY IMPORTED_LOCATION "@CMAKE_INSTALL_PREFIX@/bin/asgard${CMAKE_EXECUTABLE_SUFFIX_CXX}") | ||
set_property(TARGET asgard::exe PROPERTY IMPORTED_LOCATION "@__asgard_install_prefix@/bin/asgard${CMAKE_EXECUTABLE_SUFFIX_CXX}") | ||
|
||
add_library(asgard::asgard INTERFACE IMPORTED GLOBAL) | ||
target_link_libraries(asgard::asgard INTERFACE libasgard) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
include setup.py | ||
include pyproject.toml | ||
include CMakeLists.txt | ||
include LICENSE.txt | ||
include *.md | ||
include asgard-config.cmake | ||
include asgard-env.sh | ||
|
||
include contrib/asgard_io.cmake | ||
include contrib/contrib.cmake | ||
include contrib/FindLINALG.cmake | ||
include contrib/GetGitRevisionDescription.cmake | ||
include contrib/GetGitRevisionDescription.cmake.in | ||
|
||
recursive-include doxygen * | ||
recursive-include examples * | ||
recursive-include infiles * | ||
recursive-include python * | ||
recursive-include src * | ||
|
||
include testing/TestingCMakeLists.txt | ||
include testing/test_post_install.sh |
Oops, something went wrong.