Skip to content
Snippets Groups Projects
Commit c3a85c1e authored by Carsten Patzke's avatar Carsten Patzke
Browse files

Removed 'libfabric' linking requirements

parent 6ec0eeb7
No related branches found
No related tags found
No related merge requests found
if (ENABLE_LIBFABRIC)
set (TEMP_ADDITIONAL_LINK_ARGS_PART ", '-lfabric'")
else()
set (TEMP_ADDITIONAL_LINK_ARGS_PART "")
endif()
set (TEMP_ADDITIONAL_LINK_ARGS_PART "") # Arguments for the linker
if ((CMAKE_BUILD_TYPE STREQUAL "Debug") AND (CMAKE_C_COMPILER_ID STREQUAL "GNU"))
set (EXTRA_COMPILE_ARGS "['--std=c++11']")
......
......@@ -17,7 +17,7 @@ add_script_test("${TARGET_NAME}-tcp" "$<TARGET_FILE:event-monitor-producer-bin>
if (ENABLE_LIBFABRIC)
if (ENABLE_LIBFABRIC_LOCALHOST)
add_script_test("${TARGET_NAME}-fabric" "$<TARGET_FILE:event-monitor-producer-bin> $<TARGET_FILE:getnext_broker> $<TARGET_PROPERTY:asapo,EXENAME> fabric" nomem)
add_script_test("${TARGET_NAME}-fabric" "$<TARGET_FILE:event-monitor-producer-bin> $<TARGET_FILE:getnext_broker> $<TARGET_PROPERTY:asapo,EXENAME>" nomem)
else ()
message(WARNING "Disabled automated LibFabric of '${TARGET_NAME}-fabric' test because 'ENABLE_LIBFABRIC_LOCALHOST' is not enabled.")
endif()
......
......@@ -8,7 +8,7 @@ add_script_test("${TARGET_NAME}-tcp" "$<TARGET_FILE:dummy-data-producer> $<TARGE
if (ENABLE_LIBFABRIC)
if (ENABLE_LIBFABRIC_LOCALHOST)
add_script_test("${TARGET_NAME}-fabric" "$<TARGET_FILE:dummy-data-producer> $<TARGET_FILE:getnext_broker> $<TARGET_PROPERTY:asapo,EXENAME> fabric" nomem)
add_script_test("${TARGET_NAME}-fabric" "$<TARGET_FILE:dummy-data-producer> $<TARGET_FILE:getnext_broker> $<TARGET_PROPERTY:asapo,EXENAME>" nomem)
else ()
message(WARNING "Disabled automated LibFabric of '${TARGET_NAME}-fabric' test because 'ENABLE_LIBFABRIC_LOCALHOST' is not enabled.")
endif()
......
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