Skip to content

Commit

Permalink
refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
urbanjost committed Apr 30, 2024
1 parent 680faa2 commit 2e7940f
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions fpm.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# TOML file for fpm as described at https://fpm.fortran-lang.org/en/spec/manifest.html
name = "M_hashkeys"
version = "0.1.0"
license = "PD"
license = "CC0-1.0"
author = "John S. Urban"
maintainer = "urbanjost@comcast.net"
copyright = "Copyright 2021 John S. Urban"
Expand All @@ -11,22 +11,26 @@ keywords = ["fortran", "hash" ]
homepage = "https://github.com/urbanjost/M_hashkeys.git"

[build]
auto-executables = true
auto-tests = true
auto-examples = true
module-naming = true
auto-executables = true
auto-tests = true
auto-examples = true
module-naming = true

[install]
library = false
library = false

[[test]]
name="test_suite"
source-dir="test"
main="test_suite_M_hashkeys.f90"
[test.dependencies]
M_framework = {namespace = "GPF"}
name="test_suite"
source-dir="test"
main="test_suite_M_hashkeys.f90"
[test.dependencies]
M_framework = { git = "https://github.com/urbanjost/M_framework.git" }
#M_framework = {namespace = "GPF"}

[dependencies]
M_io = { namespace = "GPF" }
M_strings = { namespace = "GPF" }
M_system = { namespace = "GPF" }
M_io = { git = "https://github.com/urbanjost/M_io.git" }
M_strings = { git = "https://github.com/urbanjost/M_strings.git" }
M_system = { git = "https://github.com/urbanjost/M_system.git" }
#M_io = { namespace = "GPF" }
#M_strings = { namespace = "GPF" }
#M_system = { namespace = "GPF" }

0 comments on commit 2e7940f

Please # to comment.