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

Wont build with Gtk #50

Open
nigec opened this issue Dec 4, 2017 · 0 comments
Open

Wont build with Gtk #50

nigec opened this issue Dec 4, 2017 · 0 comments

Comments

@nigec
Copy link

nigec commented Dec 4, 2017

Hi
I've been trying to build a small form project which uses:
https://github.com/JuliaGraphics/Gtk.jl

I've tried a simple test project which isn't using Gtk and that builds just fine, so I'm assuming its down to paths maybe or BuildExecutable probably wont work with it?

Any insight would be great

using Gtk.ShortNames
function main()
win = Window("My window")
setproperty!(win, :title, "New title")
f = Frame("A frame")
push!(win, f)
ok = Button("OK")
push!(f, ok)
showall(win)
id = signal_connect(ok, "clicked") do widget
println(widget, " was clicked!")
end
end
main()

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant