Skip to content
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

[TVOS] Adds tvOS compatibility. #31

Merged
merged 4 commits into from
Oct 14, 2015
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
[TVOS] maketvos script names the output framework JavaScriptCore inst…
…ead of JavaScriptCore-tvOS
  • Loading branch information
Dario Segura committed Oct 14, 2015
commit 84abbecddca189f1d8b7d4847de52718db31d094
4 changes: 2 additions & 2 deletions maketvos.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ def build(out, derived_data_path):

jsc = FrameworkBuild(workspace="JavaScriptCore-iOS.xcworkspace",
scheme="JavaScriptCore tvOS",
name="JavaScriptCore-tvOS",
name="JavaScriptCore",
conf="Production",
outdir=outdir,
derived_data_path=derived_data_path)
jsc.build()

# FIXME: wtf headers are copied... remove them:
shutil.rmtree(os.path.join(outdir, 'JavaScriptCore-tvOS.framework',
shutil.rmtree(os.path.join(outdir, 'JavaScriptCore.framework',
'Headers', 'wtf'))

return outdir
Expand Down