aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-18Implement --flag option for Fortran fpmSebastian Ehlert
2021-03-18Replace deprecated flags in debug_fortran option (#386)Asdrubal Lozada-Blanco
2021-03-17Merge pull request #398 from LKedward/fix-exe-linksLaurence Kedward
Minor fix: for setting executable link libraries.
2021-03-17Minor fix: for setting executable link libraries.LKedward
Executable link libraries were not working when auto discovery was on.
2021-03-17Merge pull request #397 from milancurcic/add-conda-instructionsMilan Curcic
Add Conda install instructions to the README
2021-03-17Update conda installation instructionsSebastian Ehlert
2021-03-17add a note on where to get Condamilancurcic
2021-03-17add Sebastian's Conda instructionsmilancurcic
2021-03-11Merge pull request #378 from urbanjost/ford-ifyLaurence Kedward
Add ford-compatible documentation to fpm_strings.f90
2021-03-09Update fpm/src/fpm_strings.f90urbanjost
Co-authored-by: Laurence Kedward <laurence.kedward@bristol.ac.uk>
2021-03-08fpm_environment.f90 and fpm_filesystem.f90John S. Urban
2021-03-07a little more documentationJohn S. Urban
2021-03-07errataJohn S. Urban
2021-03-07Add ford-compatible documentation to fpm_strings.f90John S. Urban
2021-03-06Merge pull request #369 from LKedward/separate-targetsLaurence Kedward
Separate build targets from model structure
2021-03-06Merge branch 'bump-version' into separate-targetsLKedward
2021-03-06Merge remote-tracking branch 'upstream/master' into separate-targetsLKedward
2021-03-06Bump version to 0.1.4LKedward
2021-03-06Merge pull request #357 from LKedward/update-install-scriptLaurence Kedward
Update: install script for Fortran fpm
2021-03-03Merge pull request #370 from urbanjost/multiExeLaurence Kedward
Changed behavior for run subcommand per @LKedwards suggestions
2021-03-03Update fpm/src/fpm_command_line.f90urbanjost
Co-authored-by: Laurence Kedward <laurence.kedward@bristol.ac.uk>
2021-03-03Update fpm/src/fpm_command_line.f90urbanjost
Co-authored-by: Laurence Kedward <laurence.kedward@bristol.ac.uk>
2021-03-03Hacky fix for the help/new test (#352)Sebastian Ehlert
2021-03-02fix --list with globbingJohn S. Urban
2021-03-02--all is back; --list is compactJohn S. Urban
2021-03-02Update install.shLaurence Kedward
Co-authored-by: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com>
2021-03-01finish . and ..John S. Urban
finish .. document
2021-03-01remove --add and add .John S. Urban
The default behavior becomes very similar to the Rust cargo(1) package manager in that # run application if there is one target fpm run -- ARGS cargo run -- ARGS fpm run NAME(S) cargo run --example NAME fpm run --example NAME(S) cargo run --example NAME fpm run --compiler CMP cargo --profile PROFILE-NAME DIFFERENCES: <-- fpm allows multiple names <-- fpm does not have profiles, just compiler at this time <-- fpm allows for quoted globbing strings which lets you easily select all or groups by name substrings <-- fpm lists available targets if an unknown name or no name and multiple targets are available, or if special name "." is specified. From the documentation I do not see anything indicating if cargo(1) lists targets or not. So the common cases are very similiar, with extensions in fpm to list and run groups of applications using a few special globbing strings (just going from the cargo documentation; it might behave differently).
2021-02-24Merge pull request #372 from urbanjost/nounderscoreLaurence Kedward
close #371
2021-02-23close #371John S. Urban
2021-02-21Updated documentationJohn S. Urban
Just a few documentation tweaks. Since the documentation has to change for this PR anyway, cleaned up a few dusty corners primarily for the "run" subcommand that needed updated to reflect building now being the default for a run subcommand, for clarity, and to reflect the auto-build abilitites not available.
2021-02-21complete documentation changes for --addJohn S. Urban
2021-02-21Add --all as an alias for --target '*' on "run" subcommandJohn S. Urban
2021-02-21move beginning of function as do not see doc showing in FORDJohn S. Urban
2021-02-21Update fpm/src/fpm_strings.f90urbanjost
Co-authored-by: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com>
2021-02-21Update fpm/src/fpm_strings.f90urbanjost
Co-authored-by: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com>
2021-02-21Update fpm/src/fpm_command_line.f90urbanjost
Co-authored-by: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com>
2021-02-20rephrase "run" descriptionJohn S. Urban
2021-02-20Changed behavior for run subcommand per @LKedwards suggestionsJohn S. Urban
--target NAME(s) list of specific application names to execute. No name is required if only one application exists. If no name is supplied and more than one candidate exists or a name has no match a list is produced and fpm(1) exits. Simple "globbing" is supported where "?" represents any single character and "*" represents any string. Therefore a quoted asterisk '*' runs all programs.
2021-02-20Update documentationLKedward
2021-02-20Refactor target flag managementLKedward
Backend simplified to use compiler and linker flags on per target basis. Removes redundant link_flags field in model structure. Fixes benign issue with duplicated link flags.
2021-02-20Major update: separate build targets from modelLKedward
2021-02-18Merge pull request #316 from urbanjost/update_newLaurence Kedward
Update subcommand "new" to reflect the addition of support for the ex…
2021-02-13Update: install script for Fortran fpm.LKedward
- Include bootstrap of Fortran fpm in install.sh - Add ability to update repository from latest tag - Add ability to specify install path - Update README to simplify bootstrap procedure
2021-02-05Merge pull request #346 from awvwgk/default-exampleMilan Curcic
Include root dir in path to default example setup
2021-02-05Merge pull request #349 from awvwgk/bootstrapMilan Curcic
Suggest to move the fpm version in the boostrapping process
2021-02-05Merge pull request #345 from LKedward/omp-dyn-schedMilan Curcic
Update: fpm_backend with dynamic openmp scheduling
2021-02-03Suggest to move the fpm version in the boostrapping processSebastian Ehlert
2021-01-31correct github changesJohn S. Urban
2021-01-31Merge branch 'master' into update_newurbanjost