We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a206e25 commit 022fcf7Copy full SHA for 022fcf7
src/CMakeLists.txt
@@ -31,7 +31,7 @@ set(SRC
31
stdlib_experimental_ascii.f90
32
stdlib_experimental_error.f90
33
stdlib_experimental_kinds.f90
34
- stdlib_experimental_system.F90
+ stdlib_experimental_system.F90 # Captital extension for a reason?
35
${outFiles}
36
)
37
@@ -53,6 +53,13 @@ endif()
53
54
add_subdirectory(tests)
55
56
+# relax standard checks
57
+if(CMAKE_Fortran_COMPILER_ID STREQUAL GNU)
58
+ if(CMAKE_Fortran_COMPILER_VERSION VERSION_GREATER_EQUAL 10.0)
59
+ set_source_files_properties("stdlib_experimental_ascii.f90" PROPERTIES COMPILE_FLAGS "-fallow-invalid-boz")
60
+ endif()
61
+endif()
62
+
63
install(TARGETS fortran_stdlib
64
RUNTIME DESTINATION bin
65
ARCHIVE DESTINATION lib
0 commit comments