mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
CMP0118: Fix some tests and add more tests
This commit is contained in:
38
Tests/RunCMake/CMP0118/CMP0118-Common-Test16.cmake
Normal file
38
Tests/RunCMake/CMP0118/CMP0118-Common-Test16.cmake
Normal file
@@ -0,0 +1,38 @@
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/CMP0118-Common-Helper.cmake)
|
||||
|
||||
|
||||
add_custom_target(custom1)
|
||||
target_sources(custom1 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source1.txt"
|
||||
)
|
||||
add_custom_target(custom2)
|
||||
target_sources(custom2 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source2.txt"
|
||||
)
|
||||
add_custom_target(custom3)
|
||||
target_sources(custom3 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source3.txt"
|
||||
)
|
||||
add_custom_target(custom4)
|
||||
target_sources(custom4 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source4.txt"
|
||||
)
|
||||
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source1.txt"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/Source.txt.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source1.txt"
|
||||
)
|
||||
add_custom_command(TARGET custom2 PRE_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/Source.txt.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source2.txt"
|
||||
BYPRODUCT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source2.txt"
|
||||
)
|
||||
|
||||
add_subdirectory(subdir-Common-Test16)
|
||||
|
||||
get_and_print_GENERATED_property("Generated_source1.txt")
|
||||
get_and_print_GENERATED_property("Generated_source2.txt")
|
||||
get_and_print_GENERATED_property("Generated_source3.txt")
|
||||
get_and_print_GENERATED_property("Generated_source4.txt")
|
||||
9
Tests/RunCMake/CMP0118/CMP0118-Common-Test1b.cmake
Normal file
9
Tests/RunCMake/CMP0118/CMP0118-Common-Test1b.cmake
Normal file
@@ -0,0 +1,9 @@
|
||||
add_custom_target(custom)
|
||||
target_sources(custom PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
)
|
||||
|
||||
get_source_file_property(prop
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
GENERATED)
|
||||
message(NOTICE "prop: `${prop}`")
|
||||
12
Tests/RunCMake/CMP0118/CMP0118-Common-Test2b.cmake
Normal file
12
Tests/RunCMake/CMP0118/CMP0118-Common-Test2b.cmake
Normal file
@@ -0,0 +1,12 @@
|
||||
add_custom_target(custom)
|
||||
target_sources(custom PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
)
|
||||
|
||||
set_source_files_properties(
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
PROPERTIES GENERATED "1")
|
||||
get_source_file_property(prop
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
GENERATED)
|
||||
message(NOTICE "prop: `${prop}`")
|
||||
12
Tests/RunCMake/CMP0118/CMP0118-Common-Test2c.cmake
Normal file
12
Tests/RunCMake/CMP0118/CMP0118-Common-Test2c.cmake
Normal file
@@ -0,0 +1,12 @@
|
||||
add_custom_target(custom)
|
||||
target_sources(custom PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
)
|
||||
|
||||
set_property(SOURCE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
PROPERTY GENERATED "1")
|
||||
get_source_file_property(prop
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
GENERATED)
|
||||
message(NOTICE "prop: `${prop}`")
|
||||
12
Tests/RunCMake/CMP0118/CMP0118-Common-Test2d.cmake
Normal file
12
Tests/RunCMake/CMP0118/CMP0118-Common-Test2d.cmake
Normal file
@@ -0,0 +1,12 @@
|
||||
add_custom_target(custom)
|
||||
target_sources(custom PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
)
|
||||
|
||||
set_source_files_properties(
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
PROPERTIES GENERATED "1")
|
||||
get_property(prop SOURCE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/GeneratedMain.txt"
|
||||
PROPERTY GENERATED)
|
||||
message(NOTICE "prop: `${prop}`")
|
||||
@@ -35,7 +35,7 @@ set_property(SOURCE "Generated_with_full_path2.txt"
|
||||
PROPERTY GENERATED "1")
|
||||
get_and_print_GENERATED_property("Generated_with_full_path2.txt")
|
||||
|
||||
set_property(SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/"Generated_with_full_path3.txt"
|
||||
set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_path3.txt"
|
||||
PROPERTY GENERATED "1")
|
||||
get_and_print_GENERATED_property("Generated_with_full_path3.txt")
|
||||
|
||||
@@ -61,6 +61,6 @@ set_property(SOURCE "Generated_with_full_source_path2.txt"
|
||||
PROPERTY GENERATED "1")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path2.txt")
|
||||
|
||||
set_property(SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/"Generated_with_full_source_path3.txt"
|
||||
set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_source_path3.txt"
|
||||
PROPERTY GENERATED "1")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path3.txt")
|
||||
|
||||
@@ -9,7 +9,7 @@ set_property(SOURCE "Generated_with_full_path2.txt"
|
||||
PROPERTY GENERATED "1")
|
||||
get_and_print_GENERATED_property("Generated_with_full_path2.txt")
|
||||
|
||||
set_property(SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/"Generated_with_full_path3.txt"
|
||||
set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_path3.txt"
|
||||
PROPERTY GENERATED "1")
|
||||
get_and_print_GENERATED_property("Generated_with_full_path3.txt")
|
||||
|
||||
@@ -35,7 +35,7 @@ set_property(SOURCE "Generated_with_full_source_path2.txt"
|
||||
PROPERTY GENERATED "1")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path2.txt")
|
||||
|
||||
set_property(SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/"Generated_with_full_source_path3.txt"
|
||||
set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_source_path3.txt"
|
||||
PROPERTY GENERATED "1")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path3.txt")
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ set_property(SOURCE "Generated_with_full_path2.txt"
|
||||
PROPERTY GENERATED "0")
|
||||
get_and_print_GENERATED_property("Generated_with_full_path2.txt")
|
||||
|
||||
set_property(SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/"Generated_with_full_path3.txt"
|
||||
set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_path3.txt"
|
||||
PROPERTY GENERATED "0")
|
||||
get_and_print_GENERATED_property("Generated_with_full_path3.txt")
|
||||
|
||||
@@ -61,6 +61,6 @@ set_property(SOURCE "Generated_with_full_source_path2.txt"
|
||||
PROPERTY GENERATED "0")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path2.txt")
|
||||
|
||||
set_property(SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/"Generated_with_full_source_path3.txt"
|
||||
set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_source_path3.txt"
|
||||
PROPERTY GENERATED "0")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path3.txt")
|
||||
|
||||
@@ -9,7 +9,7 @@ set_property(SOURCE "Generated_with_full_path2.txt"
|
||||
PROPERTY GENERATED "0")
|
||||
get_and_print_GENERATED_property("Generated_with_full_path2.txt")
|
||||
|
||||
set_property(SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/"Generated_with_full_path3.txt"
|
||||
set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_path3.txt"
|
||||
PROPERTY GENERATED "0")
|
||||
get_and_print_GENERATED_property("Generated_with_full_path3.txt")
|
||||
|
||||
@@ -35,7 +35,7 @@ set_property(SOURCE "Generated_with_full_source_path2.txt"
|
||||
PROPERTY GENERATED "0")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path2.txt")
|
||||
|
||||
set_property(SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/"Generated_with_full_source_path3.txt"
|
||||
set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_source_path3.txt"
|
||||
PROPERTY GENERATED "0")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path3.txt")
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ set_property(SOURCE "Generated_with_relative_path3.txt"
|
||||
get_and_print_GENERATED_property("Generated_with_relative_path3.txt")
|
||||
|
||||
|
||||
set_property(SOURCE "${CMAKE_CURRENT_BINARY_DIR}/Generated_with_full_source_path1.txt"
|
||||
set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_source_path1.txt"
|
||||
PROPERTY GENERATED "tRue")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path1.txt")
|
||||
|
||||
@@ -73,6 +73,6 @@ set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_source_path
|
||||
PROPERTY GENERATED "SomeVar-NOTFOUND")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path2.txt")
|
||||
|
||||
set_property(SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/"Generated_with_full_source_path3.txt"
|
||||
set_property(SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/Generated_with_full_source_path3.txt"
|
||||
PROPERTY GENERATED "Junk-value")
|
||||
get_and_print_GENERATED_property("Generated_with_full_source_path3.txt")
|
||||
|
||||
@@ -27,6 +27,7 @@ target_sources(custom6 PRIVATE
|
||||
)
|
||||
|
||||
|
||||
# Note: Currently, `file(GENERATE)` does not set the `GENERATED` property!
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source1.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
|
||||
51
Tests/RunCMake/CMP0118/CMP0118-Common-Test8b.cmake
Normal file
51
Tests/RunCMake/CMP0118/CMP0118-Common-Test8b.cmake
Normal file
@@ -0,0 +1,51 @@
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/CMP0118-Common-Helper.cmake)
|
||||
|
||||
|
||||
add_custom_target(custom1)
|
||||
target_sources(custom1 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source1.txt"
|
||||
)
|
||||
add_custom_target(custom2)
|
||||
target_sources(custom2 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source2.txt"
|
||||
)
|
||||
add_custom_target(custom3)
|
||||
target_sources(custom3 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source3.txt"
|
||||
)
|
||||
add_custom_target(custom4)
|
||||
target_sources(custom4 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source4.txt"
|
||||
)
|
||||
add_custom_target(custom5)
|
||||
target_sources(custom5 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source5.txt"
|
||||
)
|
||||
add_custom_target(custom6)
|
||||
target_sources(custom6 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source6.txt"
|
||||
)
|
||||
|
||||
|
||||
# Note: Currently, `file(GENERATE)` does not set the `GENERATED` property!
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source1.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source2.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source3.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
|
||||
add_subdirectory(subdir-Common-Test8b)
|
||||
|
||||
get_and_print_GENERATED_property("Generated_source1.txt")
|
||||
get_and_print_GENERATED_property("Generated_source2.txt")
|
||||
get_and_print_GENERATED_property("Generated_source3.txt")
|
||||
get_and_print_GENERATED_property("Generated_source4.txt")
|
||||
get_and_print_GENERATED_property("Generated_source5.txt")
|
||||
get_and_print_GENERATED_property("Generated_source6.txt")
|
||||
@@ -27,6 +27,7 @@ target_sources(custom6 PRIVATE
|
||||
)
|
||||
|
||||
|
||||
# Note: Currently, `file(GENERATE)` does not set the `GENERATED` property!
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source1.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
|
||||
51
Tests/RunCMake/CMP0118/CMP0118-Common-Test9b.cmake
Normal file
51
Tests/RunCMake/CMP0118/CMP0118-Common-Test9b.cmake
Normal file
@@ -0,0 +1,51 @@
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/CMP0118-Common-Helper.cmake)
|
||||
|
||||
|
||||
add_custom_target(custom1)
|
||||
target_sources(custom1 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source1.txt"
|
||||
)
|
||||
add_custom_target(custom2)
|
||||
target_sources(custom2 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source2.txt"
|
||||
)
|
||||
add_custom_target(custom3)
|
||||
target_sources(custom3 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source3.txt"
|
||||
)
|
||||
add_custom_target(custom4)
|
||||
target_sources(custom4 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source4.txt"
|
||||
)
|
||||
add_custom_target(custom5)
|
||||
target_sources(custom5 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source5.txt"
|
||||
)
|
||||
add_custom_target(custom6)
|
||||
target_sources(custom6 PRIVATE
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/Generated_source6.txt"
|
||||
)
|
||||
|
||||
|
||||
# Note: Currently, `file(GENERATE)` does not set the `GENERATED` property!
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source1.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source2.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source3.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
|
||||
add_subdirectory(subdir-Common-Test9b)
|
||||
|
||||
get_and_print_GENERATED_property("Generated_source1.txt")
|
||||
get_and_print_GENERATED_property("Generated_source2.txt")
|
||||
get_and_print_GENERATED_property("Generated_source3.txt")
|
||||
get_and_print_GENERATED_property("Generated_source4.txt")
|
||||
get_and_print_GENERATED_property("Generated_source5.txt")
|
||||
get_and_print_GENERATED_property("Generated_source6.txt")
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test16-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test16-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
27
Tests/RunCMake/CMP0118/CMP0118-NEW-Test16-stderr.txt
Normal file
27
Tests/RunCMake/CMP0118/CMP0118-NEW-Test16-stderr.txt
Normal file
@@ -0,0 +1,27 @@
|
||||
^CMake Error at subdir-Common-Test16/CMakeLists\.txt:[0-9]+ \(add_custom_command\):
|
||||
TARGET 'custom4' was not created in this directory\.
|
||||
+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_source1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_source1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_source1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3b # GENERATED = `0`$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test16.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test16.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 NEW)
|
||||
include(CMP0118-Common-Test16.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test1b-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test1b-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
10
Tests/RunCMake/CMP0118/CMP0118-NEW-Test1b-stderr.txt
Normal file
10
Tests/RunCMake/CMP0118/CMP0118-NEW-Test1b-stderr.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
^prop: `NOTFOUND`
|
||||
CMake Error at CMP0118-Common-Test1b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-NEW-Test1b-build/GeneratedMain\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test1b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Generate step failed\. Build files cannot be regenerated correctly\.$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test1b.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test1b.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 NEW)
|
||||
include(CMP0118-Common-Test1b.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2b-stderr.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2b-stderr.txt
Normal file
@@ -0,0 +1 @@
|
||||
^prop: `1`$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2b.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2b.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 NEW)
|
||||
include(CMP0118-Common-Test2b.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2c-stderr.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2c-stderr.txt
Normal file
@@ -0,0 +1 @@
|
||||
^prop: `1`$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2c.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2c.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 NEW)
|
||||
include(CMP0118-Common-Test2c.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2d-stderr.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2d-stderr.txt
Normal file
@@ -0,0 +1 @@
|
||||
^prop: `1`$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2d.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test2d.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 NEW)
|
||||
include(CMP0118-Common-Test2d.cmake)
|
||||
@@ -12,10 +12,10 @@ Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 2a # GENERATED = `1`
|
||||
@@ -48,14 +48,14 @@ Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `1`
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test3-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-NEW-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -63,7 +63,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test3-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-NEW-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -71,15 +71,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test3-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-NEW-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
|
||||
@@ -12,10 +12,10 @@ Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 2a # GENERATED = `1`
|
||||
@@ -48,14 +48,14 @@ Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `1`
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test3b-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[12]\.txt|CMP0118-NEW-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -63,7 +63,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test3b-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[12]\.txt|CMP0118-NEW-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -71,15 +71,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test3b-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[12]\.txt|CMP0118-NEW-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
|
||||
@@ -76,12 +76,12 @@ Generated_with_relative_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `1`
|
||||
CMake Warning \(dev\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Unsetting the 'GENERATED' property is not allowed under CMP0118!
|
||||
|
||||
@@ -118,7 +118,7 @@ Generated_with_full_source_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -126,7 +126,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -134,7 +134,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -142,7 +142,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -150,7 +150,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -158,15 +158,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-NEW-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
|
||||
36
Tests/RunCMake/CMP0118/CMP0118-NEW-Test8b-stderr.txt
Normal file
36
Tests/RunCMake/CMP0118/CMP0118-NEW-Test8b-stderr.txt
Normal file
@@ -0,0 +1,36 @@
|
||||
^Generated_source1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3b # GENERATED = `0`$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test8b.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test8b.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 NEW)
|
||||
include(CMP0118-Common-Test8b.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test9b-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-NEW-Test9b-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
61
Tests/RunCMake/CMP0118/CMP0118-NEW-Test9b-stderr.txt
Normal file
61
Tests/RunCMake/CMP0118/CMP0118-NEW-Test9b-stderr.txt
Normal file
@@ -0,0 +1,61 @@
|
||||
^Generated_source1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3b # GENERATED = `0`
|
||||
CMake Error at CMP0118-Common-Test9b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-NEW-Test9b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test9b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test9b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-NEW-Test9b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test9b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test9b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-NEW-Test9b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-NEW-Test9b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Generate step failed\. Build files cannot be regenerated correctly\.$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test9b.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-NEW-Test9b.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 NEW)
|
||||
include(CMP0118-Common-Test9b.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-OLD-Test16-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-OLD-Test16-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
38
Tests/RunCMake/CMP0118/CMP0118-OLD-Test16-stderr.txt
Normal file
38
Tests/RunCMake/CMP0118/CMP0118-OLD-Test16-stderr.txt
Normal file
@@ -0,0 +1,38 @@
|
||||
^CMake Deprecation Warning at CMP0118-OLD-Test16\.cmake:[0-9]+ \(cmake_policy\):
|
||||
The OLD behavior for policy CMP0118 will be removed from a future version
|
||||
of CMake\.
|
||||
|
||||
The cmake-policies\(7\) manual explains that the OLD behaviors of all
|
||||
policies are deprecated and that a policy should be set to OLD only under
|
||||
specific short-term circumstances\. Projects should be ported to the NEW
|
||||
behavior and not rely on setting a policy to OLD\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at subdir-Common-Test16/CMakeLists\.txt:[0-9]+ \(add_custom_command\):
|
||||
TARGET 'custom4' was not created in this directory\.
|
||||
+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_source1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_source1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_source1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3b # GENERATED = `0`$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test16.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test16.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 OLD)
|
||||
include(CMP0118-Common-Test16.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-OLD-Test1b-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-OLD-Test1b-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
21
Tests/RunCMake/CMP0118/CMP0118-OLD-Test1b-stderr.txt
Normal file
21
Tests/RunCMake/CMP0118/CMP0118-OLD-Test1b-stderr.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
^CMake Deprecation Warning at CMP0118-OLD-Test1b\.cmake:[0-9]+ \(cmake_policy\):
|
||||
The OLD behavior for policy CMP0118 will be removed from a future version
|
||||
of CMake\.
|
||||
|
||||
The cmake-policies\(7\) manual explains that the OLD behaviors of all
|
||||
policies are deprecated and that a policy should be set to OLD only under
|
||||
specific short-term circumstances\. Projects should be ported to the NEW
|
||||
behavior and not rely on setting a policy to OLD\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
prop: `NOTFOUND`
|
||||
CMake Error at CMP0118-Common-Test1b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-OLD-Test1b-build/GeneratedMain\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test1b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Generate step failed\. Build files cannot be regenerated correctly\.$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test1b.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test1b.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 OLD)
|
||||
include(CMP0118-Common-Test1b.cmake)
|
||||
12
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2b-stderr.txt
Normal file
12
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2b-stderr.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
^CMake Deprecation Warning at CMP0118-OLD-Test2b\.cmake:[0-9]+ \(cmake_policy\):
|
||||
The OLD behavior for policy CMP0118 will be removed from a future version
|
||||
of CMake\.
|
||||
|
||||
The cmake-policies\(7\) manual explains that the OLD behaviors of all
|
||||
policies are deprecated and that a policy should be set to OLD only under
|
||||
specific short-term circumstances\. Projects should be ported to the NEW
|
||||
behavior and not rely on setting a policy to OLD\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
prop: `1`$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2b.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2b.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 OLD)
|
||||
include(CMP0118-Common-Test2b.cmake)
|
||||
12
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2c-stderr.txt
Normal file
12
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2c-stderr.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
^CMake Deprecation Warning at CMP0118-OLD-Test2c\.cmake:[0-9]+ \(cmake_policy\):
|
||||
The OLD behavior for policy CMP0118 will be removed from a future version
|
||||
of CMake\.
|
||||
|
||||
The cmake-policies\(7\) manual explains that the OLD behaviors of all
|
||||
policies are deprecated and that a policy should be set to OLD only under
|
||||
specific short-term circumstances\. Projects should be ported to the NEW
|
||||
behavior and not rely on setting a policy to OLD\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
prop: `1`$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2c.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2c.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 OLD)
|
||||
include(CMP0118-Common-Test2c.cmake)
|
||||
12
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2d-stderr.txt
Normal file
12
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2d-stderr.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
^CMake Deprecation Warning at CMP0118-OLD-Test2d\.cmake:[0-9]+ \(cmake_policy\):
|
||||
The OLD behavior for policy CMP0118 will be removed from a future version
|
||||
of CMake\.
|
||||
|
||||
The cmake-policies\(7\) manual explains that the OLD behaviors of all
|
||||
policies are deprecated and that a policy should be set to OLD only under
|
||||
specific short-term circumstances\. Projects should be ported to the NEW
|
||||
behavior and not rely on setting a policy to OLD\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
prop: `1`$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2d.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test2d.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 OLD)
|
||||
include(CMP0118-Common-Test2d.cmake)
|
||||
@@ -23,10 +23,10 @@ Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 2a # GENERATED = `1`
|
||||
@@ -59,14 +59,14 @@ Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `1`
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test3-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-OLD-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -74,7 +74,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test3-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-OLD-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -82,15 +82,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test3-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-OLD-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
|
||||
@@ -23,10 +23,10 @@ Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 2a # GENERATED = `1`
|
||||
@@ -59,14 +59,14 @@ Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `1`
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test3b-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-OLD-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -74,7 +74,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test3b-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-OLD-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -82,15 +82,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test3b-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-OLD-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
|
||||
@@ -45,12 +45,12 @@ Generated_with_relative_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `1`
|
||||
Generated_with_full_source_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 2a # GENERATED = `0`
|
||||
@@ -66,7 +66,7 @@ Generated_with_full_source_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -74,7 +74,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -82,7 +82,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -90,7 +90,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -98,7 +98,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -106,15 +106,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-OLD-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-OLD-Test8b-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-OLD-Test8b-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
56
Tests/RunCMake/CMP0118/CMP0118-OLD-Test8b-stderr.txt
Normal file
56
Tests/RunCMake/CMP0118/CMP0118-OLD-Test8b-stderr.txt
Normal file
@@ -0,0 +1,56 @@
|
||||
^CMake Deprecation Warning at CMP0118-OLD-Test8b\.cmake:[0-9]+ \(cmake_policy\):
|
||||
The OLD behavior for policy CMP0118 will be removed from a future version
|
||||
of CMake\.
|
||||
|
||||
The cmake-policies\(7\) manual explains that the OLD behaviors of all
|
||||
policies are deprecated and that a policy should be set to OLD only under
|
||||
specific short-term circumstances\. Projects should be ported to the NEW
|
||||
behavior and not rely on setting a policy to OLD\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3b # GENERATED = `0`
|
||||
CMake Error at CMP0118-Common-Test8b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-OLD-Test8b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test8b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Generate step failed\. Build files cannot be regenerated correctly\.$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test8b.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test8b.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 OLD)
|
||||
include(CMP0118-Common-Test8b.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-OLD-Test9b-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-OLD-Test9b-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
72
Tests/RunCMake/CMP0118/CMP0118-OLD-Test9b-stderr.txt
Normal file
72
Tests/RunCMake/CMP0118/CMP0118-OLD-Test9b-stderr.txt
Normal file
@@ -0,0 +1,72 @@
|
||||
^CMake Deprecation Warning at CMP0118-OLD-Test9b\.cmake:[0-9]+ \(cmake_policy\):
|
||||
The OLD behavior for policy CMP0118 will be removed from a future version
|
||||
of CMake\.
|
||||
|
||||
The cmake-policies\(7\) manual explains that the OLD behaviors of all
|
||||
policies are deprecated and that a policy should be set to OLD only under
|
||||
specific short-term circumstances\. Projects should be ported to the NEW
|
||||
behavior and not rely on setting a policy to OLD\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3b # GENERATED = `0`
|
||||
CMake Error at CMP0118-Common-Test9b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-OLD-Test9b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test9b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test9b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-OLD-Test9b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test9b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test9b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-OLD-Test9b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-OLD-Test9b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Generate step failed\. Build files cannot be regenerated correctly\.$
|
||||
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test9b.cmake
Normal file
2
Tests/RunCMake/CMP0118/CMP0118-OLD-Test9b.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
cmake_policy(SET CMP0118 OLD)
|
||||
include(CMP0118-Common-Test9b.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test16-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test16-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
27
Tests/RunCMake/CMP0118/CMP0118-WARN-Test16-stderr.txt
Normal file
27
Tests/RunCMake/CMP0118/CMP0118-WARN-Test16-stderr.txt
Normal file
@@ -0,0 +1,27 @@
|
||||
^CMake Error at subdir-Common-Test16/CMakeLists\.txt:[0-9]+ \(add_custom_command\):
|
||||
TARGET 'custom4' was not created in this directory\.
|
||||
+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_source1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_source1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_source1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3b # GENERATED = `0`$
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test16.cmake
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test16.cmake
Normal file
@@ -0,0 +1 @@
|
||||
include(CMP0118-Common-Test16.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test1b-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test1b-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
10
Tests/RunCMake/CMP0118/CMP0118-WARN-Test1b-stderr.txt
Normal file
10
Tests/RunCMake/CMP0118/CMP0118-WARN-Test1b-stderr.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
^prop: `NOTFOUND`
|
||||
CMake Error at CMP0118-Common-Test1b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-WARN-Test1b-build/GeneratedMain\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test1b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Generate step failed\. Build files cannot be regenerated correctly\.$
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test1b.cmake
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test1b.cmake
Normal file
@@ -0,0 +1 @@
|
||||
include(CMP0118-Common-Test1b.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2b-stderr.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2b-stderr.txt
Normal file
@@ -0,0 +1 @@
|
||||
^prop: `1`$
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2b.cmake
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2b.cmake
Normal file
@@ -0,0 +1 @@
|
||||
include(CMP0118-Common-Test2b.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2c-stderr.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2c-stderr.txt
Normal file
@@ -0,0 +1 @@
|
||||
^prop: `1`$
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2c.cmake
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2c.cmake
Normal file
@@ -0,0 +1 @@
|
||||
include(CMP0118-Common-Test2c.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2d-stderr.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2d-stderr.txt
Normal file
@@ -0,0 +1 @@
|
||||
^prop: `1`$
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2d.cmake
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test2d.cmake
Normal file
@@ -0,0 +1 @@
|
||||
include(CMP0118-Common-Test2d.cmake)
|
||||
@@ -12,10 +12,10 @@ Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 2a # GENERATED = `1`
|
||||
@@ -48,14 +48,14 @@ Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `1`
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test3-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-WARN-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -63,7 +63,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test3-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-WARN-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -71,15 +71,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test3\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test3-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-2]\.txt|CMP0118-WARN-Test3-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test3\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
|
||||
@@ -12,10 +12,10 @@ Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 2a # GENERATED = `1`
|
||||
@@ -48,14 +48,14 @@ Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path3\.txt: # 3b # GENERATED = `1`
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test3b-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[12]\.txt|CMP0118-WARN-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -63,7 +63,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test3b-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[12]\.txt|CMP0118-WARN-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -71,15 +71,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test3b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test3b-build/Generated_with_full_path3\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[12]\.txt|CMP0118-WARN-Test3b-build/Generated_with_full_path3\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test3b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
|
||||
@@ -102,12 +102,12 @@ Generated_with_relative_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `1`
|
||||
CMake Warning \(dev\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: The GENERATED source file property is now
|
||||
visible in all directories\. Run "cmake --help-policy CMP0118" for policy
|
||||
@@ -157,7 +157,7 @@ Generated_with_full_source_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -165,7 +165,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -173,7 +173,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -181,7 +181,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -189,7 +189,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
@@ -197,15 +197,7 @@ Call Stack \(most recent call first\):
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test5\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[1-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/(Generated_with_full_source_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_relative_path[2-3]\.txt|CMP0118-WARN-Test5-build/Generated_with_full_path[2-3]\.txt)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test8b-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test8b-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
45
Tests/RunCMake/CMP0118/CMP0118-WARN-Test8b-stderr.txt
Normal file
45
Tests/RunCMake/CMP0118/CMP0118-WARN-Test8b-stderr.txt
Normal file
@@ -0,0 +1,45 @@
|
||||
^Generated_source1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3b # GENERATED = `0`
|
||||
CMake Error at CMP0118-Common-Test8b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-WARN-Test8b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test8b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Generate step failed\. Build files cannot be regenerated correctly\.$
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test8b.cmake
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test8b.cmake
Normal file
@@ -0,0 +1 @@
|
||||
include(CMP0118-Common-Test8b.cmake)
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test9b-result.txt
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test9b-result.txt
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
61
Tests/RunCMake/CMP0118/CMP0118-WARN-Test9b-stderr.txt
Normal file
61
Tests/RunCMake/CMP0118/CMP0118-WARN-Test9b-stderr.txt
Normal file
@@ -0,0 +1,61 @@
|
||||
^Generated_source1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source2\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source3\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source4\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source5\.txt: # 3b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 1b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 2b # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3a # GENERATED = `0`
|
||||
Generated_source6\.txt: # 3b # GENERATED = `0`
|
||||
CMake Error at CMP0118-Common-Test9b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-WARN-Test9b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test9b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test9b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-WARN-Test9b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test9b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Error at CMP0118-Common-Test9b\.cmake:[0-9]+ \(target_sources\):
|
||||
Cannot find source file:
|
||||
|
||||
[ \t]*.*Tests/RunCMake/CMP0118/CMP0118-WARN-Test9b-build/Generated_source[4-6]\.txt
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test9b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
+
|
||||
CMake Generate step failed\. Build files cannot be regenerated correctly\.$
|
||||
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test9b.cmake
Normal file
1
Tests/RunCMake/CMP0118/CMP0118-WARN-Test9b.cmake
Normal file
@@ -0,0 +1 @@
|
||||
include(CMP0118-Common-Test9b.cmake)
|
||||
@@ -1,4 +1,4 @@
|
||||
cmake_minimum_required(VERSION 3.19)
|
||||
cmake_policy(SET CMP0115 NEW)
|
||||
cmake_policy(SET CMP0115 NEW) # CMP0115 is correct here (for reducing error-output)!
|
||||
project(${RunCMake_TEST} NONE)
|
||||
include(${RunCMake_TEST}.cmake NO_POLICY_SCOPE)
|
||||
|
||||
@@ -5,7 +5,11 @@ run_cmake(GenInSubdir-WARN)
|
||||
run_cmake(GenInSubdir-NEW)
|
||||
|
||||
run_cmake(CMP0118-OLD-Test1)
|
||||
run_cmake(CMP0118-OLD-Test1b)
|
||||
run_cmake(CMP0118-OLD-Test2)
|
||||
run_cmake(CMP0118-OLD-Test2b)
|
||||
run_cmake(CMP0118-OLD-Test2c)
|
||||
run_cmake(CMP0118-OLD-Test2d)
|
||||
run_cmake(CMP0118-OLD-Test3)
|
||||
run_cmake(CMP0118-OLD-Test3b)
|
||||
run_cmake(CMP0118-OLD-Test4)
|
||||
@@ -14,16 +18,23 @@ run_cmake(CMP0118-OLD-Test5)
|
||||
run_cmake(CMP0118-OLD-Test6)
|
||||
run_cmake(CMP0118-OLD-Test7)
|
||||
run_cmake(CMP0118-OLD-Test8)
|
||||
run_cmake(CMP0118-OLD-Test8b)
|
||||
run_cmake(CMP0118-OLD-Test9)
|
||||
run_cmake(CMP0118-OLD-Test9b)
|
||||
run_cmake(CMP0118-OLD-Test10)
|
||||
run_cmake(CMP0118-OLD-Test11)
|
||||
run_cmake(CMP0118-OLD-Test12)
|
||||
run_cmake(CMP0118-OLD-Test13)
|
||||
run_cmake(CMP0118-OLD-Test14)
|
||||
run_cmake(CMP0118-OLD-Test15)
|
||||
run_cmake(CMP0118-OLD-Test16)
|
||||
|
||||
run_cmake(CMP0118-WARN-Test1)
|
||||
run_cmake(CMP0118-WARN-Test1b)
|
||||
run_cmake(CMP0118-WARN-Test2)
|
||||
run_cmake(CMP0118-WARN-Test2b)
|
||||
run_cmake(CMP0118-WARN-Test2c)
|
||||
run_cmake(CMP0118-WARN-Test2d)
|
||||
run_cmake(CMP0118-WARN-Test3)
|
||||
run_cmake(CMP0118-WARN-Test3b)
|
||||
run_cmake(CMP0118-WARN-Test4)
|
||||
@@ -32,16 +43,23 @@ run_cmake(CMP0118-WARN-Test5)
|
||||
run_cmake(CMP0118-WARN-Test6)
|
||||
run_cmake(CMP0118-WARN-Test7)
|
||||
run_cmake(CMP0118-WARN-Test8)
|
||||
run_cmake(CMP0118-WARN-Test8b)
|
||||
run_cmake(CMP0118-WARN-Test9)
|
||||
run_cmake(CMP0118-WARN-Test9b)
|
||||
run_cmake(CMP0118-WARN-Test10)
|
||||
run_cmake(CMP0118-WARN-Test11)
|
||||
run_cmake(CMP0118-WARN-Test12)
|
||||
run_cmake(CMP0118-WARN-Test13)
|
||||
run_cmake(CMP0118-WARN-Test14)
|
||||
run_cmake(CMP0118-WARN-Test15)
|
||||
run_cmake(CMP0118-WARN-Test16)
|
||||
|
||||
run_cmake(CMP0118-NEW-Test1)
|
||||
run_cmake(CMP0118-NEW-Test1b)
|
||||
run_cmake(CMP0118-NEW-Test2)
|
||||
run_cmake(CMP0118-NEW-Test2b)
|
||||
run_cmake(CMP0118-NEW-Test2c)
|
||||
run_cmake(CMP0118-NEW-Test2d)
|
||||
run_cmake(CMP0118-NEW-Test3)
|
||||
run_cmake(CMP0118-NEW-Test3b)
|
||||
run_cmake(CMP0118-NEW-Test4)
|
||||
@@ -50,10 +68,13 @@ run_cmake(CMP0118-NEW-Test5)
|
||||
run_cmake(CMP0118-NEW-Test6)
|
||||
run_cmake(CMP0118-NEW-Test7)
|
||||
run_cmake(CMP0118-NEW-Test8)
|
||||
run_cmake(CMP0118-NEW-Test8b)
|
||||
run_cmake(CMP0118-NEW-Test9)
|
||||
run_cmake(CMP0118-NEW-Test9b)
|
||||
run_cmake(CMP0118-NEW-Test10)
|
||||
run_cmake(CMP0118-NEW-Test11)
|
||||
run_cmake(CMP0118-NEW-Test12)
|
||||
run_cmake(CMP0118-NEW-Test13)
|
||||
run_cmake(CMP0118-NEW-Test14)
|
||||
run_cmake(CMP0118-NEW-Test15)
|
||||
run_cmake(CMP0118-NEW-Test16)
|
||||
|
||||
@@ -1,13 +1,16 @@
|
||||
# Note: Target "custom4" was not created in this directory, so setting this build-event will fail!
|
||||
add_custom_command(TARGET custom4 PRE_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/Source.txt.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/../Generated_source4.txt"
|
||||
BYPRODUCT "${CMAKE_CURRENT_BINARY_DIR}/../Generated_source4.txt"
|
||||
)
|
||||
# Note: Target "custom5" was not created in this directory, so setting this build-event will fail!
|
||||
add_custom_command(TARGET custom5 PRE_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/Source.txt.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/../Generated_source5.txt"
|
||||
BYPRODUCT "${CMAKE_CURRENT_BINARY_DIR}/../Generated_source5.txt"
|
||||
)
|
||||
# Note: Target "custom6" was not created in this directory, so setting this build-event will fail!
|
||||
add_custom_command(TARGET custom6 PRE_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/Source.txt.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/../Generated_source6.txt"
|
||||
|
||||
10
Tests/RunCMake/CMP0118/subdir-Common-Test16/CMakeLists.txt
Normal file
10
Tests/RunCMake/CMP0118/subdir-Common-Test16/CMakeLists.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
add_custom_command(
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/../Generated_source3.txt"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/Source.txt.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/../Generated_source3.txt"
|
||||
)
|
||||
add_custom_command(TARGET custom4 PRE_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/Source.txt.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/../Generated_source4.txt"
|
||||
BYPRODUCT "${CMAKE_CURRENT_BINARY_DIR}/../Generated_source4.txt"
|
||||
)
|
||||
@@ -1,3 +1,4 @@
|
||||
# Note: Currently, `file(GENERATE)` does not set the `GENERATED` property!
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source4.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
|
||||
13
Tests/RunCMake/CMP0118/subdir-Common-Test8b/CMakeLists.txt
Normal file
13
Tests/RunCMake/CMP0118/subdir-Common-Test8b/CMakeLists.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
# Note: Currently, `file(GENERATE)` does not set the `GENERATED` property!
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/../Generated_source4.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/../Generated_source5.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/../Generated_source6.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
@@ -1,3 +1,4 @@
|
||||
# Note: Currently, `file(GENERATE)` does not set the `GENERATED` property!
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source4.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
|
||||
13
Tests/RunCMake/CMP0118/subdir-Common-Test9b/CMakeLists.txt
Normal file
13
Tests/RunCMake/CMP0118/subdir-Common-Test9b/CMakeLists.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
# Note: Currently, `file(GENERATE)` does not set the `GENERATED` property!
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source4.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source5.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
file(GENERATE
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/Generated_source6.txt"
|
||||
CONTENT "int func();\nint main(){ return func(); }"
|
||||
)
|
||||
Reference in New Issue
Block a user