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
This commit is contained in:
Jonathan R. Madsen
2022-05-31 14:55:31 -05:00
committed by GitHub
parent 8b97c70df8
commit a9ff15ff8c
12 changed files with 129 additions and 37 deletions
+5 -2
View File
@@ -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()