Browse Source

cmake: Update formatting introduced by gersemi 0.21.0

PatTheMav 2 months ago
parent
commit
ab01c406c2
1 changed files with 10 additions and 5 deletions
  1. 10 5
      cmake/common/helpers_common.cmake

+ 10 - 5
cmake/common/helpers_common.cmake

@@ -304,12 +304,17 @@ function(target_export target)
   install(
     TARGETS ${target}
     EXPORT ${target}Targets
-    RUNTIME DESTINATION "${OBS_EXECUTABLE_DESTINATION}" COMPONENT Development ${exclude_variant}
-    LIBRARY DESTINATION "${OBS_LIBRARY_DESTINATION}" COMPONENT Development ${exclude_variant}
-    ARCHIVE DESTINATION "${OBS_LIBRARY_DESTINATION}" COMPONENT Development ${exclude_variant}
-    FRAMEWORK DESTINATION Frameworks COMPONENT Development ${exclude_variant}
+    RUNTIME DESTINATION "${OBS_EXECUTABLE_DESTINATION}" COMPONENT Development
+    ${exclude_variant}
+    LIBRARY DESTINATION "${OBS_LIBRARY_DESTINATION}" COMPONENT Development
+    ${exclude_variant}
+    ARCHIVE DESTINATION "${OBS_LIBRARY_DESTINATION}" COMPONENT Development
+    ${exclude_variant}
+    FRAMEWORK DESTINATION Frameworks COMPONENT Development
+    ${exclude_variant}
     INCLUDES DESTINATION "${include_destination}"
-    PUBLIC_HEADER DESTINATION "${include_destination}" COMPONENT Development ${exclude_variant}
+    PUBLIC_HEADER DESTINATION "${include_destination}" COMPONENT Development
+    ${exclude_variant}
   )
 
   get_target_property(obs_public_headers ${target} OBS_PUBLIC_HEADERS)