ImportedObjectLib-check.cmake 253 B

12345678910
  1. # Check that we're linking to an object file on disk
  2. # and not to "-objects" alias (which only exists for non-imported targets).
  3. set(REGEX_TO_MATCH "
  4. .*.Libraries =
  5. .*{
  6. .*'MyApp_CXX_Objs_1',
  7. .*dummy.o'
  8. .*}
  9. ")
  10. include(${RunCMake_SOURCE_DIR}/check.cmake)