From ba425782762b15339da39fc74e196b08fc76f3a0 Mon Sep 17 00:00:00 2001 From: sgeard Date: Sat, 10 Jun 2023 14:32:18 +0100 Subject: [PATCH] Added rsp file to save writing --compiler intel everywhere; updated README accordingly --- README.md | 5 +++++ fpm.rsp | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 fpm.rsp diff --git a/README.md b/README.md index 4184612..2118f57 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,10 @@ Examples cd hp fpm test fpm run + # or using the response file (saves writing --compiler ifort everywhere) + fpm @build + fpm @test + fpm @run ``` or just list it as a dependency in your fpm.toml project file. @@ -64,3 +68,4 @@ Examples [dependencies] hp = { git = "https://github.com/sgeard/hp.git" } ``` + diff --git a/fpm.rsp b/fpm.rsp new file mode 100644 index 0000000..3721fcc --- /dev/null +++ b/fpm.rsp @@ -0,0 +1,11 @@ +@build +> Building with ifort +options build --compiler ifort +############################### +@run +> Running +options run --compiler ifort +############################### +@test +> Running tests on amap +options test --compiler ifort