Skip to content

Commit ddfd419

Browse files
committed
Adapt for fpm script
1 parent 5b07bd0 commit ddfd419

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/fpm-deployment.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,13 @@ prune=(
3030
"$destdir/test/test_always_fail.f90"
3131
"$destdir/test/test_always_skip.f90"
3232
"$destdir/test/test_hash_functions.f90"
33-
"$destdir/src/common.f90"
3433
"$destdir/src/f18estop.f90"
3534
)
3635

3736
major=$(cut -d. -f1 VERSION)
3837
minor=$(cut -d. -f2 VERSION)
3938
patch=$(cut -d. -f3 VERSION)
40-
fyflags="${fyflags} -DPROJECT_VERSION_MAJOR=${major} -DPROJECT_VERSION_MINOR=${minor} -DPROJECT_VERSION_PATCH=${patch}"
39+
fyflags="${fyflags} -DPROJECT_VERSION_MAJOR=${major} -DPROJECT_VERSION_MINOR=${minor} -DPROJECT_VERSION_PATCH=${patch} -I include"
4140

4241
mkdir -p "$destdir/src" "$destdir/test" "$destdir/example"
4342

test/string/test_string_assignment.fypp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#:include "common.fypp"
12
! SPDX-Identifier: MIT
23
module test_string_assignment
34
use testdrive, only : new_unittest, unittest_type, error_type, check

0 commit comments

Comments
 (0)