Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmake/EkatUtils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ macro (EkatConfigFile CONFIG_FILE_IN CONFIG_FILE_C)
if (EKAT_CONFIGURE_FILE_F90_FILE)
# run sed to change '/*...*/' comments into '!/*...*/'
execute_process(COMMAND sed "s;^/;!/;g"
WORKING_DIRECTORY ${EKAT_BINARY_DIR}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
INPUT_FILE ${CONFIG_FILE_C}
OUTPUT_FILE ${EKAT_CONFIGURE_FILE_F90_FILE})

# do the same for '//...' comments (turn them into '! ...'
execute_process(COMMAND sed "s;^//;!;g"
WORKING_DIRECTORY ${EKAT_BINARY_DIR}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
INPUT_FILE ${CONFIG_FILE_C}
OUTPUT_FILE ${EKAT_CONFIGURE_FILE_F90_FILE})
endif()
Expand Down
1 change: 1 addition & 0 deletions src/kokkos/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ set (HEADERS
ekat_kokkos_types.hpp
ekat_math_utils.hpp
ekat_subview_utils.hpp
ekat_kokkos_str_utils.hpp
ekat_team_policy_utils.hpp
ekat_upper_bound.hpp
ekat_view_utils.hpp
Expand Down