File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,12 @@ message ( STATUS "CMake build configuration for JSON-Fortran ${VERSION_MAJOR}.${
44
44
#-------------------------------------
45
45
# Collect source files for the library
46
46
#-------------------------------------
47
- set ( JF_LIB_SRCS src/json_module.F90 )
47
+ set ( JF_LIB_SRCS src/json_kinds.F90
48
+ src/json_parameters.F90
49
+ src/json_string_utilities.F90
50
+ src/json_value_module.F90
51
+ src/json_file_module.F90
52
+ src/json_module.F90 )
48
53
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.f90" )
49
54
set ( JF_TEST_UCS4_SUPPORT_SRC "${CMAKE_SOURCE_DIR} /src/tests/introspection/test_iso_10646_support.f90" )
50
55
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ subroutine test_12(error_cnt)
149
149
call json% get(me= root,path= ' array data.data' ,array_callback= get_3D_from_array)
150
150
call check_errors(all (abs (fetched_array - reshape (raw_array,[size (raw_array)])) <= TOL))
151
151
152
- my_file = json_file(root)
152
+ my_file = json_file(root,verbose = .true. ,real_format = ' G ' )
153
153
154
154
call my_file% update(' array data.description' ,CK_' vector data' ,found= existed)
155
155
call check_file_errors(existed)
You can’t perform that action at this time.
0 commit comments