122623a929
* Replace `cmake-format` with `gersemi` Signed-off-by: David Galiffi <David.Galiffi@amd.com> * Remove .cmake-format.yaml Signed-off-by: David Galiffi <David.Galiffi@amd.com> * Update workflow to use gersemi Signed-off-by: David Galiffi <David.Galiffi@amd.com> * Update CONTRIBUTING.md * Update helper scripts * Don't include `*/external/*` in workflows --------- Signed-off-by: David Galiffi <David.Galiffi@amd.com>
18 lines
477 B
CMake
18 lines
477 B
CMake
# executable RPATH
|
|
|
|
set(ROCPROFSYS_EXE_INSTALL_RPATH
|
|
"\$ORIGIN/../${CMAKE_INSTALL_LIBDIR}:\$ORIGIN/../${CMAKE_INSTALL_LIBDIR}/${PROJECT_NAME}"
|
|
)
|
|
|
|
# executables
|
|
add_subdirectory(rocprof-sys-avail)
|
|
add_subdirectory(rocprof-sys-causal)
|
|
add_subdirectory(rocprof-sys-sample)
|
|
add_subdirectory(rocprof-sys-instrument)
|
|
add_subdirectory(rocprof-sys-run)
|
|
|
|
# tests
|
|
if(ROCPROFSYS_BUILD_TESTING OR "$ENV{ROCPROFSYS_CI}" MATCHES "[1-9]+|ON|on|y|yes")
|
|
add_subdirectory(tests)
|
|
endif()
|