Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added untracked headers in cmake #228

Merged
merged 2 commits into from
Feb 3, 2023
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Current develop

### Fixed (issue #227)
- [[PR228]](https://github.com/lanl/singularity-eos/pull/228) added untracked header files in cmake

### Added (entropy calculation for stellar collapse eos)
- [[PR226]](https://github.com/lanl/singularity-eos/pull/226) added entropy interpolation to stellar collapse eos

Expand Down
29 changes: 17 additions & 12 deletions singularity-eos/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,32 @@
#------------------------------------------------------------------------------#

set(EOS_HEADERS
base/constants.hpp
base/eos_error.hpp
closure/mixed_cell_models.hpp
base/fast-math/logs.hpp
base/math_utils.hpp
base/robust_utils.hpp
base/root-finding-1d/root_finding.hpp
base/variadic_utils.hpp
base/math_utils.hpp
base/constants.hpp
base/eos_error.hpp
base/sp5/singularity_eos_sp5.hpp
eos/eos.hpp
eos/eos_builder.hpp
eos/eos_variant.hpp
eos/singularity_eos.hpp
eos/eos_stellar_collapse.hpp
eos/eos_ideal.hpp
eos/eos_spiner.hpp
eos/eos_davis.hpp
eos/eos_eospac.hpp
eos/eos_gruneisen.hpp
eos/eos_ideal.hpp
eos/eos_builder.hpp
eos/eos_jwl.hpp
eos/eos_spiner.hpp
eos/eos_stellar_collapse.hpp
eos/eos_variant.hpp
eos/modifiers/eos_unitsystem.hpp
eos/modifiers/ramps_eos.hpp
eos/modifiers/relativistic_eos.hpp
eos/modifiers/scaled_eos.hpp
eos/modifiers/ramps_eos.hpp
eos/modifiers/shifted_eos.hpp
eos/modifiers/relativistic_eos.hpp
eos/modifiers/eos_unitsystem.hpp
eos/eos_base.hpp
eos/eos_eospac.hpp
)

set(EOS_SRCS
Expand Down