Skip to content

Commit 826729c

Browse files
committed
Fix ninja failure?
1 parent 6f75888 commit 826729c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/data_handling/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22
add_library( data_handling SHARED data_handling.f90 )
33

4-
add_dependencies( data_handling service )
4+
target_link_libraries( data_handling service )

src/integ_trans/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22
add_library( integ_trans SHARED integ_trans.f90 )
33

4-
add_dependencies( integ_trans service )
4+
target_link_libraries( integ_trans service )

src/interpolation/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22
add_library( interpolation SHARED interpolation.f90 )
33

4-
add_dependencies( interpolation service )
4+
target_link_libraries( interpolation service )

src/linear/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ add_library( linear SHARED linear.f90 )
33

44
target_link_libraries( linear ${LAPACK_LIBRARIES} )
55

6-
add_dependencies( linear service )
6+
target_link_libraries( linear service )

src/special_functions/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22
add_library( special_functions SHARED special_functions.f90 )
33

4-
add_dependencies( special_functions service )
4+
target_link_libraries( special_functions service )

0 commit comments

Comments
 (0)