Skip to content

Commit f6c2b26

Browse files
committed
Merge branch 'master' of https://github.com/fortran-lang/stdlib into hash_maps
2 parents b91ff35 + fb4ca80 commit f6c2b26

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# Version 0.2.1
2+
3+
Full release notes available at [v0.2.1] tag.
4+
5+
[v0.2.1]: https://github.com/fortran-lang/stdlib/releases/tag/v0.2.1
6+
7+
- build system related bugfixes
8+
9+
110
# Version 0.2.0
211

312
Full release notes available at [v0.2.0] tag.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0
1+
0.2.1

src/CMakeLists.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ set(SRC
9898

9999
add_library(${PROJECT_NAME} ${SRC})
100100

101+
set_target_properties(
102+
${PROJECT_NAME}
103+
PROPERTIES
104+
POSITION_INDEPENDENT_CODE ON
105+
WINDOWS_EXPORT_ALL_SYMBOLS ON
106+
)
107+
101108
if(CMAKE_Fortran_COMPILER_ID STREQUAL GNU AND CMAKE_Fortran_COMPILER_VERSION VERSION_LESS 10.0)
102109
target_compile_options(
103110
${PROJECT_NAME}

0 commit comments

Comments
 (0)