Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-18 | Make sure to always add a leading space to compile flags | Sebastian Ehlert | |
2021-03-18 | Replace deprecated debug arguments | Sebastian Ehlert | |
2021-03-18 | Hack around the canon_path function bug | Sebastian Ehlert | |
2021-03-18 | Don't use explicit paths to targets in CI tests | Sebastian Ehlert | |
2021-03-18 | Introduce compilation profiles | Sebastian Ehlert | |
- default is equal to debug unless --flag is present and overwrites all arguments - debug is the developement profile, options given by --flag are appended - release is the production profile, options given by --flag are appended | |||
2021-03-18 | Implement --flag option for Fortran fpm | Sebastian Ehlert | |
2021-03-18 | Replace deprecated flags in debug_fortran option (#386) | Asdrubal Lozada-Blanco | |
2021-03-17 | Merge pull request #398 from LKedward/fix-exe-links | Laurence Kedward | |
Minor fix: for setting executable link libraries. | |||
2021-03-17 | Minor fix: for setting executable link libraries. | LKedward | |
Executable link libraries were not working when auto discovery was on. | |||
2021-03-17 | Merge pull request #397 from milancurcic/add-conda-instructions | Milan Curcic | |
Add Conda install instructions to the README | |||
2021-03-17 | Update conda installation instructions | Sebastian Ehlert | |
2021-03-17 | add a note on where to get Conda | milancurcic | |
2021-03-17 | add Sebastian's Conda instructions | milancurcic | |
2021-03-15 | Update: allow list of include directories | LKedward | |
2021-03-15 | Add: new_string_t helper fcn | LKedward | |
2021-03-11 | Merge pull request #378 from urbanjost/ford-ify | Laurence Kedward | |
Add ford-compatible documentation to fpm_strings.f90 | |||
2021-03-09 | Update fpm/src/fpm_strings.f90 | urbanjost | |
Co-authored-by: Laurence Kedward <laurence.kedward@bristol.ac.uk> | |||
2021-03-08 | fpm_environment.f90 and fpm_filesystem.f90 | John S. Urban | |
2021-03-07 | a little more documentation | John S. Urban | |
2021-03-07 | errata | John S. Urban | |
2021-03-07 | Add ford-compatible documentation to fpm_strings.f90 | John S. Urban | |
2021-03-07 | Minor fix: for packages with empty target lists | LKedward | |
Header-only libraries may result in no compile targets. | |||
2021-03-07 | Add: example packages for include directories | LKedward | |
2021-03-07 | Update: manifest reference for include-dir entry | LKedward | |
2021-03-07 | Update: target compile flags with include directories | LKedward | |
2021-03-07 | Update: model with list of include dirs | LKedward | |
A library package must consist of at least a source directory, an include directory or both. Default values of "src" and "include" are ignored if non-existent. | |||
2021-03-07 | Add: manifest library entry for include-dir | LKedward | |
2021-03-06 | Merge pull request #369 from LKedward/separate-targets | Laurence Kedward | |
Separate build targets from model structure | |||
2021-03-06 | Merge branch 'bump-version' into separate-targets | LKedward | |
2021-03-06 | Merge remote-tracking branch 'upstream/master' into separate-targets | LKedward | |
2021-03-06 | Bump version to 0.1.4 | LKedward | |
2021-03-06 | Merge pull request #357 from LKedward/update-install-script | Laurence Kedward | |
Update: install script for Fortran fpm | |||
2021-03-03 | Merge pull request #370 from urbanjost/multiExe | Laurence Kedward | |
Changed behavior for run subcommand per @LKedwards suggestions | |||
2021-03-03 | Update fpm/src/fpm_command_line.f90 | urbanjost | |
Co-authored-by: Laurence Kedward <laurence.kedward@bristol.ac.uk> | |||
2021-03-03 | Update fpm/src/fpm_command_line.f90 | urbanjost | |
Co-authored-by: Laurence Kedward <laurence.kedward@bristol.ac.uk> | |||
2021-03-03 | Hacky fix for the help/new test (#352) | Sebastian Ehlert | |
2021-03-02 | fix --list with globbing | John S. Urban | |
2021-03-02 | --all is back; --list is compact | John S. Urban | |
2021-03-02 | Update install.sh | Laurence Kedward | |
Co-authored-by: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> | |||
2021-03-01 | finish . and .. | John S. Urban | |
finish .. document | |||
2021-03-01 | remove --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-24 | Merge pull request #372 from urbanjost/nounderscore | Laurence Kedward | |
close #371 | |||
2021-02-23 | close #371 | John S. Urban | |
2021-02-21 | Updated documentation | John 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-21 | complete documentation changes for --add | John S. Urban | |
2021-02-21 | Add --all as an alias for --target '*' on "run" subcommand | John S. Urban | |
2021-02-21 | move beginning of function as do not see doc showing in FORD | John S. Urban | |
2021-02-21 | Update fpm/src/fpm_strings.f90 | urbanjost | |
Co-authored-by: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> | |||
2021-02-21 | Update fpm/src/fpm_strings.f90 | urbanjost | |
Co-authored-by: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> | |||
2021-02-21 | Update fpm/src/fpm_command_line.f90 | urbanjost | |
Co-authored-by: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> |