CMake updates/fixes + parallel-overhead updates (#16)

- OMNITRACE_INSTALL_EXAMPLES option
- Fix lulesh standalone HIP compilation
- Fix transpose standalone HIP compilation
- Tweaks to parallel-overhead
Este commit está contenido en:
Jonathan R. Madsen
2022-05-31 14:55:31 -05:00
cometido por GitHub
padre 8b97c70df8
commit a9ff15ff8c
Se han modificado 12 ficheros con 129 adiciones y 37 borrados
+5 -2
Ver fichero
@@ -10,6 +10,9 @@ add_executable(code-coverage code-coverage.cpp)
target_link_libraries(code-coverage PRIVATE Threads::Threads)
target_compile_options(code-coverage PRIVATE ${_FLAGS})
if(NOT CMAKE_PROJECT_NAME STREQUAL "omnitrace")
install(TARGETS code-coverage DESTINATION bin)
if(OMNITRACE_INSTALL_EXAMPLES)
install(
TARGETS code-coverage
DESTINATION bin
COMPONENT omnitrace-examples)
endif()