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

Use binaries from JuliaBinaryWrappers #5

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions src/SimpleDirectMediaLayer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ module SimpleDirectMediaLayer
error("SimpleDirectMediaLayer not properly installed. Please run Pkg.build(\"SimpleDirectMediaLayer\") then restart Julia.")
end

# Deprecate old library variables
Base.@deprecate_binding libSDL2 SimpleDirectMediaLayer.libsdl2 false
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<3 woah, this is awesome. Thanks, you're the best!

# Base.@deprecate_binding libSDL2_mixer SimpleDirectMediaLayer.libsdl2_mixer false
# Base.@deprecate_binding libSDL2_ttf SimpleDirectMediaLayer.libsdl2_ttf false

include("lib/SDL.jl")
include("lib/SDL_ttf.jl")
include("lib/SDL_mixer.jl")
Expand Down
Loading