diff options
| author | Yong He <yonghe@outlook.com> | 2025-01-14 10:38:46 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-14 10:38:46 -0800 |
| commit | 4e62f98f3abfa1b1e125c371160ed309ca5b6c04 (patch) | |
| tree | a27c1f331d634b382f07d6cef6b02753bf77274d /cmake/SlangTarget.cmake | |
| parent | cbdc7e1219e472fd74f7f559d7e417f233e7df39 (diff) | |
Fix documentation on DescriptorHandle. (#6062)
* Fix documentation on DescriptorHandle.
* Fix.
* format code
---------
Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com>
Diffstat (limited to 'cmake/SlangTarget.cmake')
| -rw-r--r-- | cmake/SlangTarget.cmake | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/cmake/SlangTarget.cmake b/cmake/SlangTarget.cmake index 45e7cf1e1..eae5cf35e 100644 --- a/cmake/SlangTarget.cmake +++ b/cmake/SlangTarget.cmake @@ -505,10 +505,14 @@ function(slang_add_target dir type) endif() install( TARGETS ${target} ${export_args} - ARCHIVE DESTINATION ${archive_subdir} ${ARGN} - LIBRARY DESTINATION ${library_subdir} ${ARGN} - RUNTIME DESTINATION ${runtime_subdir} ${ARGN} - PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} ${ARGN} + ARCHIVE DESTINATION ${archive_subdir} + ${ARGN} + LIBRARY DESTINATION ${library_subdir} + ${ARGN} + RUNTIME DESTINATION ${runtime_subdir} + ${ARGN} + PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} + ${ARGN} ) endmacro() |
