-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #503 from electronic-structure/develop
Update to version 6.5.4
- Loading branch information
Showing
134 changed files
with
5,385 additions
and
8,657 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ src/version.h | |
.cproject | ||
.project | ||
.settings | ||
.vscode | ||
|
||
html/ | ||
latex/ | ||
|
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,3 @@ | ||
add_executable(hydrogen hydrogen.cpp) | ||
target_link_libraries(hydrogen PRIVATE sirius) | ||
install(TARGETS hydrogen RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") |
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 @@ | ||
Solve the hydrogen-like problem. |
File renamed without changes.
File renamed without changes.
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 @@ | ||
add_executable(sirius.nlcg sirius.nlcg.cpp) | ||
find_package(Kokkos REQUIRED) | ||
target_link_libraries(sirius.nlcg PRIVATE sirius) | ||
target_link_libraries(sirius.nlcg PRIVATE nlcglib::nlcglib) | ||
target_link_libraries(sirius.nlcg PRIVATE ${KOKKOS_LIBRARIES}) | ||
set_property(TARGET sirius.nlcg PROPERTY POSITION_INDEPENDENT_CODE OFF) | ||
install(TARGETS sirius.nlcg RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") | ||
|
||
|
||
# add_executable(sirius.test.nlcg sirius.test.nlcg.cpp) | ||
# find_package(nlcglib REQUIRED) | ||
# target_link_libraries(sirius.test.nlcg PRIVATE sirius) | ||
# set_property(TARGET sirius.test.nlcg PROPERTY POSITION_INDEPENDENT_CODE OFF) | ||
# install(TARGETS sirius.test.nlcg RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") |
Oops, something went wrong.