File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,23 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES Cray)
7878endif ()
7979
8080# library to archive (libneural.a)
81- add_library (neural src/mod_activation.f90 src/mod_io.f90 src/mod_kinds.f90 src/mod_layer.f90 src/mod_mnist.f90 src/mod_network.f90 src/mod_parallel.f90 src/mod_random.f90)
81+ add_library (neural
82+ src/mod_activation.f90
83+ src/mod_activation_submodule.f90
84+ src/mod_io.f90
85+ src/mod_io_submodule.f90
86+ src/mod_kinds.f90
87+ src/mod_layer.f90
88+ src/mod_layer_submodule.f90
89+ src/mod_mnist.f90
90+ src/mod_mnist_submodule.f90
91+ src/mod_network.f90
92+ src/mod_network_submodule.f90
93+ src/mod_parallel.f90
94+ src/mod_parallel_submodule.f90
95+ src/mod_random.f90
96+ src/mod_random_submodule.f90
97+ )
8298
8399# Remove leading or trailing whitespace
84100string (REGEX REPLACE "^ | $" "" LIBS "${LIBS} " )
You can’t perform that action at this time.
0 commit comments