Added rsp file to save writing --compiler intel everywhere;
updated README accordingly
This commit is contained in:
parent
693a387466
commit
ba42578276
2 changed files with 16 additions and 0 deletions
|
@ -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" }
|
||||
```
|
||||
|
||||
|
|
11
fpm.rsp
Normal file
11
fpm.rsp
Normal file
|
@ -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
|
Loading…
Reference in a new issue