From 5db6df1985608eb49f79ad2257ffbc52388d70a9 Mon Sep 17 00:00:00 2001 From: Tom Finegan Date: Wed, 25 Sep 2019 14:28:23 -0700 Subject: [PATCH] draco: formatting fixes in draco_features.cmake. Just line wrapping stuff. --- cmake/draco_features.cmake | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/cmake/draco_features.cmake b/cmake/draco_features.cmake index 7a6ce7d..8b56aa8 100644 --- a/cmake/draco_features.cmake +++ b/cmake/draco_features.cmake @@ -52,10 +52,13 @@ function(draco_generate_features_h) file(APPEND "${draco_features_file_name}.new" "#define ${feature}\n") endforeach() - file(APPEND "${draco_features_file_name}.new" "\n#endif // DRACO_FEATURES_H_") + file(APPEND "${draco_features_file_name}.new" + "\n#endif // DRACO_FEATURES_H_") - # Will replace ${draco_features_file_name} only if the file content has changed. - # This prevents forced Draco rebuilds after CMake runs. - configure_file("${draco_features_file_name}.new" "${draco_features_file_name}") + # Will replace ${draco_features_file_name} only if the file content has + # changed. This prevents forced Draco rebuilds after CMake runs. + configure_file("${draco_features_file_name}.new" + "${draco_features_file_name}") file(REMOVE "${draco_features_file_name}.new") + endfunction()