Skip to content
Snippets Groups Projects
Commit 7277934a authored by Atkins, Charles Vernon's avatar Atkins, Charles Vernon
Browse files

Add a few working examples

parent 7058ac92
No related branches found
No related tags found
1 merge request!8Integrate groupless
add_subdirectory(hello)
add_subdirectory(bpWriter)
add_subdirectory(timeBP)
if(ADIOS_USE_ADIOS1)
add_subdirectory(adios1Writer)
endif()
if(ADIOS_USE_DataMan)
add_subdirectory(dataman)
endif()
add_executable(hello_bpWriter helloBPWriter.cpp)
target_link_libraries(hello_bpWriter adios2)
add_executable(hello_bpWriter_nompi helloBPWriter_nompi.cpp)
target_link_libraries(hello_bpWriter_nompi adios2)
add_executable(hello_timeBPWriter timeBPWriter.cpp)
target_link_libraries(hello_timeBPWriter adios2)
add_executable(hello_timeBPWriter_nompi timeBPWriter_nompi.cpp)
target_link_libraries(hello_timeBPWriter_nompi adios2)
......@@ -14,6 +14,7 @@ fi
cd ${SOURCE_DIR}
# Check C and C++ code with clang-format
echo "Checking formatting for commit range: ${COMMIT_RANGE}"
DIFF="$(./scripts/developer/git/git-clang-format --diff ${COMMIT_RANGE})"
if [ "${DIFF}" != "no modified files to format" ]
then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment