blob: 889fe809fc2a9d32a91d0465ce8ddd2a59230fc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
if (NOT EXISTS ${OBJLIB_LISTFILE})
message(SEND_ERROR "Object listing file \"${OBJLIB_LISTFILE}\" not found!")
endif()
file(STRINGS ${OBJLIB_LISTFILE} objlib_files)
list(LENGTH objlib_files num_objectfiles)
if (NOT EXPECTED_NUM_OBJECTFILES EQUAL num_objectfiles)
message(SEND_ERROR "Unexpected number of entries in object list file (${num_objectfiles} instead of ${EXPECTED_NUM_OBJECTFILES})")
endif()
foreach(objlib_file ${objlib_files})
set(file_exists False)
if (EXISTS ${objlib_file})
set(file_exists True)
endif()
if (NOT file_exists)
if (objlib_file MATCHES ".(CURRENT_ARCH)")
string(REPLACE "$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)" "*" config_file "${objlib_file}")
string(REPLACE "$(PROJECT_NAME)" "GeneratorExpression" config_file "${config_file}")
string(REPLACE "$(CURRENT_ARCH)" "*" config_file "${config_file}")
file(GLOB_RECURSE files "${config_file}")
list(LENGTH files num_files)
if (NOT files)
message(SEND_ERROR "Got no files for expression ${config_file}")
endif()
set(file_exists True)
else()
foreach(config_macro "$(Configuration)" "$(OutDir)" "$(IntDir)")
string(REPLACE "${config_macro}" "${TEST_CONFIGURATION}" config_file "${objlib_file}")
list(APPEND attempts ${config_file})
if (EXISTS ${config_file})
set(file_exists True)
endif()
endforeach()
endif()
endif()
if (NOT file_exists)
if(attempts)
list(REMOVE_DUPLICATES attempts)
set(tried " Tried ${attempts}")
endif()
message(SEND_ERROR "File \"${objlib_file}\" does not exist!${tried}")
endif()
endforeach()
|