mirror of
https://github.com/reactos/CMake.git
synced 2025-02-02 01:55:03 +00:00
93c89bc75c
Previously the `TARGET_OBJECTS` generator expression was limited only to use in a buildsystem context so that Xcode's placeholders in object file paths can be evaluated. Lift this restriction so that the expression can at least be used in most settings. Co-Author: Brad King <brad.king@kitware.com>
27 lines
780 B
CMake
27 lines
780 B
CMake
|
|
if (NOT EXISTS ${OBJLIB_LISTFILE})
|
|
message(SEND_ERROR "Object listing file \"${OBJLIB_LISTFILE}\" not found!")
|
|
endif()
|
|
|
|
file(STRINGS ${OBJLIB_LISTFILE} objlib_files ENCODING UTF-8)
|
|
|
|
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(attempts)
|
|
list(REMOVE_DUPLICATES attempts)
|
|
set(tried " Tried ${attempts}")
|
|
endif()
|
|
message(SEND_ERROR "File \"${objlib_file}\" does not exist!${tried}")
|
|
endif()
|
|
endforeach()
|