diff options
| author | Ellie Hermaszewska <ellieh@nvidia.com> | 2024-07-11 11:28:11 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-10 20:28:11 -0700 |
| commit | 49c56d742be12a8477eb7d6e2ffb637a6a153482 (patch) | |
| tree | d18c41f24b971ab8249fa7995f71d29a0c3e1c34 /cmake | |
| parent | cc86174e079210bcea6021e0ad90ba80dbf4e929 (diff) | |
Make ci scripts more robust (#4608)
* Remove syntax error in release script
* Make ci scripts more robust
* Remove lib copying
* Add bin directory to RPATH
Diffstat (limited to 'cmake')
| -rw-r--r-- | cmake/SlangTarget.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/SlangTarget.cmake b/cmake/SlangTarget.cmake index 62c3c2a89..fdf3458cf 100644 --- a/cmake/SlangTarget.cmake +++ b/cmake/SlangTarget.cmake @@ -301,12 +301,12 @@ function(slang_add_target dir type) set_property( TARGET ${target} APPEND - PROPERTY BUILD_RPATH "${ORIGIN}/../${library_subdir}" + PROPERTY BUILD_RPATH "${ORIGIN}/../${library_subdir};${ORIGIN}" ) set_property( TARGET ${target} APPEND - PROPERTY INSTALL_RPATH "${ORIGIN}/../${library_subdir}" + PROPERTY INSTALL_RPATH "${ORIGIN}/../${library_subdir};${ORIGIN}" ) # On the same topic, give everything a dylib suffix on Mac OS |
