Skip to content

Import Swift 3 overlay from swift repo #89

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 22, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add new overlay sourcefiles to Makefile.am (does not build)
  • Loading branch information
das committed Jun 22, 2016
commit 2377895d8868c1ab9a3d715fa66ea17cbe481c88
14 changes: 12 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,18 @@ DTRACE_SOURCES=provider.h
endif

if HAVE_SWIFT
libdispatch_la_SOURCES+=swift/swift_wrappers.c
EXTRA_libdispatch_la_SOURCES+=swift/Dispatch.swift
libdispatch_la_SOURCES+=swift/Dispatch.mm
EXTRA_libdispatch_la_SOURCES+= \
swift/Dispatch.swift \
swift/Block.swift \
swift/Data.swift \
swift/Dispatch.swift \
swift/IO.swift \
swift/Private.swift \
swift/Queue.swift \
swift/Source.swift \
swift/Time.swift

EXTRA_libdispatch_la_DEPENDENCIES+=$(abs_builddir)/Dispatch.o $(abs_builddir)/Dispatch.swiftmodule
libdispatch_la_LIBADD+=$(abs_builddir)/Dispatch.o

Expand Down