d648c4766f
Commit b8af2011 (cmTarget: Fix listing of source files at configure-time., 2014-04-13) refactored a GetObjectLibrariesCMP0026 method out of GetLanguages. In flight, a conditional use of a target if available was changed to an assert-available. This code is only used to read the LOCATION property at configure time, when the link information is incomplete, and not all targets are defined, so the assert is inappropriate, even though it can lead to incorrect information being generated. CMP0026 warns about the potentially incorrect information anyway.
14 lines
183 B
CMake
14 lines
183 B
CMake
|
|
enable_language(CXX)
|
|
|
|
add_executable(objlibuser
|
|
empty.cpp
|
|
$<TARGET_OBJECTS:bar>
|
|
)
|
|
|
|
get_target_property(_location objlibuser LOCATION)
|
|
|
|
add_library(bar OBJECT
|
|
empty.cpp
|
|
)
|