cmake_object_lib_support.c 477 B

123456789
  1. // DO NOT DELETE
  2. // This file is needed for Xcode to properly handle CMake OBJECT Libraries
  3. // From docs (https://cmake.org/cmake/help/latest/command/add_library.html#object-libraries):
  4. //
  5. // ... Some native build systems (such as Xcode) may not like targets that have only object files,
  6. // so consider adding at least one real source file to any target that references $<TARGET_OBJECTS:objlib>.
  7. // Just a dummy symbol to avoid compiler warnings
  8. int srt_object_lib_dummy = 0;