Skip to content

Commit

Permalink
Fix inaccuracies in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
billschereriii committed Jul 27, 2023
1 parent ea2cc40 commit 90e346b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/parallel/fortran/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ find_package(MPI REQUIRED)
IF(NOT MPI_Fortran_FOUND)
message(FATAL_ERROR "Could not find Fortran MPI components")
endif()
# . Main SmartRedis Library (C++ based)
# . Main SmartRedis Library (C/C++ based)
add_library(smartredis-main ${SMARTREDIS_LINK_MODE} IMPORTED)
find_library(SR_LIB ${SMARTREDIS_LIB}
PATHS ${SMARTREDIS_INSTALL_PATH}/lib NO_DEFAULT_PATH
Expand All @@ -58,7 +58,7 @@ find_library(SR_LIB ${SMARTREDIS_LIB}
set_target_properties(smartredis-main PROPERTIES
IMPORTED_LOCATION ${SR_LIB}
)
# . SmartRedis Fortran Library (C++ based)
# . SmartRedis Fortran Library (Fortran based)
add_library(smartredis-fortran ${SMARTREDIS_LINK_MODE} IMPORTED)
find_library(SR_FTN_LIB ${SMARTREDIS_FORTRAN_LIB}
PATHS ${SMARTREDIS_INSTALL_PATH}/lib NO_DEFAULT_PATH
Expand Down
4 changes: 2 additions & 2 deletions examples/serial/fortran/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if(NOT DEFINED SMARTREDIS_INSTALL_PATH)
endif()

# Locate dependencies
# . Main SmartRedis Library (C++ based)
# . Main SmartRedis Library (C/C++ based)
add_library(smartredis-main ${SMARTREDIS_LINK_MODE} IMPORTED)
find_library(SR_LIB ${SMARTREDIS_LIB}
PATHS ${SMARTREDIS_INSTALL_PATH}/lib NO_DEFAULT_PATH
Expand All @@ -55,7 +55,7 @@ find_library(SR_LIB ${SMARTREDIS_LIB}
set_target_properties(smartredis-main PROPERTIES
IMPORTED_LOCATION ${SR_LIB}
)
# . SmartRedis Fortran Library (C++ based)
# . SmartRedis Fortran Library (Fortran based)
add_library(smartredis-fortran ${SMARTREDIS_LINK_MODE} IMPORTED)
find_library(SR_FTN_LIB ${SMARTREDIS_FORTRAN_LIB}
PATHS ${SMARTREDIS_INSTALL_PATH}/lib NO_DEFAULT_PATH
Expand Down
4 changes: 2 additions & 2 deletions tests/fortran/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ if(NOT DEFINED SMARTREDIS_INSTALL_PATH)
endif()

# Locate dependencies
# . Main SmartRedis Library (C++ based)
# . Main SmartRedis Library (C/C++ based)
add_library(smartredis-main ${SMARTREDIS_LINK_MODE} IMPORTED)
find_library(SR_LIB ${SMARTREDIS_LIB}
PATHS ${SMARTREDIS_INSTALL_PATH}/lib NO_DEFAULT_PATH
Expand All @@ -54,7 +54,7 @@ find_library(SR_LIB ${SMARTREDIS_LIB}
set_target_properties(smartredis-main PROPERTIES
IMPORTED_LOCATION ${SR_LIB}
)
# . SmartRedis Fortran Library (C++ based)
# . SmartRedis Fortran Library (Fortran based)
add_library(smartredis-fortran ${SMARTREDIS_LINK_MODE} IMPORTED)
find_library(SR_FTN_LIB ${SMARTREDIS_FORTRAN_LIB}
PATHS ${SMARTREDIS_INSTALL_PATH}/lib NO_DEFAULT_PATH
Expand Down

0 comments on commit 90e346b

Please sign in to comment.