1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
include_directories(${PROJECT_SOURCE_DIR}/src/public)
include_directories(${PROJECT_SOURCE_DIR}/src)
include_directories(${PROJECT_SOURCE_DIR}/tests/suite/programs/examples/global_array)
include_directories(${PROJECT_BINARY_DIR}/src)
include_directories(${PROJECT_BINARY_DIR}/src/public)
include_directories(${PROJECT_BINARY_DIR}/tests/suite/programs/examples/global_array)
link_directories(${PROJECT_BINARY_DIR}/tests/suite/programs/examples/global_array)
add_executable(global_array_write_C global_array_write_C.c gwrite_temperature.ch)
target_link_libraries(global_array_write_C adios ${ADIOSLIB_LDADD})
add_custom_command(
OUTPUT gwrite_temperature.ch
COMMAND ${PROJECT_BINARY_DIR}/utils/gpp/gpp.py ${PROJECT_SOURCE_DIR}/tests/suite/programs/examples/global_array/global_array_C.xml
DEPENDS global_array_C.xml
)
add_executable(global_array_write_noxml_C global_array_write_noxml_C.c)
target_link_libraries(global_array_write_noxml_C adios ${ADIOSLIB_LDADD})
add_executable(global_array_write_byid_noxml_C global_array_write_byid_noxml_C.c)
target_link_libraries(global_array_write_byid_noxml_C adios ${ADIOSLIB_LDADD})
add_executable(global_array_aggregate_by_color_C global_array_aggregate_by_color_C.c)
target_link_libraries(global_array_aggregate_by_color_C adios ${ADIOSLIB_LDADD})
add_executable(global_array_read_C global_array_read_C.c)
target_link_libraries(global_array_read_C adiosread ${ADIOSREADLIB_LDADD})
add_executable(global_array_read_noxml_C global_array_read_noxml_C.c)
target_link_libraries(global_array_read_noxml_C adiosread ${ADIOSREADLIB_LDADD})
add_executable(global_array_read_byid_noxml_C global_array_read_byid_noxml_C.c)
target_link_libraries(global_array_read_byid_noxml_C adiosread ${ADIOSREADLIB_LDADD})
#set_target_properties(global_array_read_noxml_C PROPERTIES COMPILE_FLAGS "-DADIOS_USE_READ_API_1")
set (PROGS global_array_write_C global_array_read_C global_array_write_noxml_C global_array_read_noxml_C)
foreach (PROG ${PROGS} )
if(MPI_COMPILE_FLAGS)
set_target_properties(${PROG} PROPERTIES COMPILE_FLAGS "${MPI_C_COMPILE_FLAGS}")
endif()
if(MPI_LINK_FLAGS)
set_target_properties(${PROG} PROPERTIES LINK_FLAGS "${MPI_C_LINK_FLAGS}")
endif()
target_link_libraries(${PROG} adios ${MPI_C_LIBRARIES})
endforeach()
if(BUILD_FORTRAN)
add_executable(global_array_write_F global_array_write_F.F90 gwrite_temperature.fh)
target_link_libraries(global_array_write_F adiosf ${ADIOSLIB_LDADD})
add_custom_command(
OUTPUT gwrite_temperature.fh
COMMAND ${PROJECT_BINARY_DIR}/utils/gpp/gpp.py ${PROJECT_SOURCE_DIR}/tests/suite/programs/examples/global_array/global_array_F.xml
DEPENDS global_array_F.xml
)
add_executable(global_array_write_noxml_F global_array_write_noxml_F.F90)
target_link_libraries(global_array_write_noxml_F adiosf ${ADIOSLIB_LDADD})
add_executable(global_array_write_byid_noxml_F global_array_write_byid_noxml_F.F90)
target_link_libraries(global_array_write_byid_noxml_F adiosf ${ADIOSLIB_LDADD})
endif()
file(COPY global_array_C.xml global_array_F.xml
DESTINATION ${PROJECT_BINARY_DIR}/tests/suite/programs/examples/global_array)
|