Files
swift-mirror/stdlib/public/runtime/SwiftObjectNative.cpp
Dmitri Gribenko 6a507d6311 Runtime: give each source file a unique basename
CMake Xcode generator does not seem to build libraries properly if we
have both a Foo.cpp and a Foo.mm in one library.
2016-06-02 01:13:40 -07:00

8 lines
204 B
C++

// This file is here only to bring in the parts of SwiftObject.mm that apply
// when not using an objc runtime.
#include "swift/Runtime/Config.h"
#if !SWIFT_OBJC_INTEROP
#include "SwiftObject.mm"
#endif