1
0
Эх сурвалжийг харах

Merge topic 'unity-include-generated' into release-3.16

7ddf462304 Unity build: Include GENERATED files into unity build

Acked-by: Kitware Robot <[email protected]>
Acked-by: Julien Schueller <[email protected]>
Merge-request: !4001
Brad King 6 жил өмнө
parent
commit
02ed66c04b

+ 2 - 3
Help/prop_tgt/UNITY_BUILD.rst

@@ -40,9 +40,8 @@ Since multiple source files are included into one source file,
 it can lead to ODR errors. This section contains properties
 which help fixing these errors.
 
-The source files marked by :prop_sf:`GENERATED` will be skipped
-from unity build. This applies also for the source files marked
-with :prop_sf:`SKIP_UNITY_BUILD_INCLUSION`.
+The source files marked by :prop_sf:`SKIP_UNITY_BUILD_INCLUSION`
+will be skipped from unity build.
 
 The source files that have :prop_sf:`COMPILE_OPTIONS`,
 :prop_sf:`COMPILE_DEFINITIONS`, :prop_sf:`COMPILE_FLAGS`, or

+ 0 - 1
Source/cmLocalGenerator.cxx

@@ -2441,7 +2441,6 @@ void cmLocalGenerator::AddUnityBuild(cmGeneratorTarget* target)
                  std::back_inserter(filtered_sources), [&](cmSourceFile* sf) {
                    return sf->GetLanguage() == lang &&
                      !sf->GetPropertyAsBool("SKIP_UNITY_BUILD_INCLUSION") &&
-                     !sf->GetPropertyAsBool("GENERATED") &&
                      !sf->GetProperty("COMPILE_OPTIONS") &&
                      !sf->GetProperty("COMPILE_DEFINITIONS") &&
                      !sf->GetProperty("COMPILE_FLAGS") &&

+ 3 - 3
Tests/RunCMake/UnityBuild/unitybuild_skip-check.cmake

@@ -1,9 +1,9 @@
 set(unitybuild_c "${RunCMake_TEST_BINARY_DIR}/CMakeFiles/tgt.dir/Unity/unity_0.c")
 file(STRINGS ${unitybuild_c} unitybuild_c_strings)
 
-string(REGEX MATCH "\\/s[1-6].c" matched_files_1_6 ${unitybuild_c_strings})
-if(matched_files_1_6)
-  set(RunCMake_TEST_FAILED "Generated unity contains s1.c -> s6.c which should have been skipped")
+string(REGEX MATCH "\\/s[2-6].c" matched_files_2_6 ${unitybuild_c_strings})
+if(matched_files_2_6)
+  set(RunCMake_TEST_FAILED "Generated unity contains s2.c -> s6.c which should have been skipped")
   return()
 endif()
 

+ 1 - 4
Tests/RunCMake/UnityBuild/unitybuild_skip.cmake

@@ -1,7 +1,7 @@
 project(unitybuild_skip C)
 
 set(srcs "")
-foreach(s RANGE 1 8)
+foreach(s RANGE 2 8)
   set(src "${CMAKE_CURRENT_BINARY_DIR}/s${s}.c")
   file(WRITE "${src}" "int s${s}(void) { return 0; }\n")
   list(APPEND srcs "${src}")
@@ -11,9 +11,6 @@ add_library(tgt SHARED ${srcs})
 
 set_target_properties(tgt PROPERTIES UNITY_BUILD ON)
 
-set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/s1.c
-  PROPERTIES GENERATED ON)
-
 set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/s2.c
   PROPERTIES SKIP_UNITY_BUILD_INCLUSION ON)