Skip to content

Commit 6333cb4

Browse files
committed
attempting to fix cmake build.
1 parent 48bdc5e commit 6333cb4

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,12 @@ message ( STATUS "CMake build configuration for JSON-Fortran ${VERSION_MAJOR}.${
4444
#-------------------------------------
4545
# Collect source files for the library
4646
#-------------------------------------
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 )
4853
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.f90" )
4954
set ( JF_TEST_UCS4_SUPPORT_SRC "${CMAKE_SOURCE_DIR}/src/tests/introspection/test_iso_10646_support.f90")
5055

src/tests/jf_test_12.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ subroutine test_12(error_cnt)
149149
call json%get(me=root,path='array data.data',array_callback=get_3D_from_array)
150150
call check_errors(all(abs(fetched_array - reshape(raw_array,[size(raw_array)])) <= TOL))
151151

152-
my_file = json_file(root)
152+
my_file = json_file(root,verbose=.true.,real_format='G')
153153

154154
call my_file%update('array data.description',CK_'vector data',found=existed)
155155
call check_file_errors(existed)

0 commit comments

Comments
 (0)