ApplicationBuilder.jl
ApplicationBuilder.jl copied to clipboard
[deprecated] Compile, bundle, and release julia software
Hi! Thanks for this great package first of all. But I'm having problems in opening the app. I'm building a stats plotting GUI app, whose executable also automatically installs required...
I'm pulling out this issue to track our attempt to build and distribute an App that uses `Blink.jl`. Things we still need to solve: - [ ] Activity Monitor doesn't...
The current system for creating portable, self-contained, downloadable binaries is quite fragile. The main problem is about embedding all non-code dependencies needed by your code and its package dependencies. The...
hello I am trying to compile [ this naive little program with Gtk/Luxor](https://github.com/nodrygo/jAnalogAlarmClock) on Linux Mint 169 64bits and I end with this code error ``` Build executable "alarmClock": `cc...
Maybe integration with something like `make`? Or maybe we can use julia's Pkg manager to do this? Been thinking about hermetically including dependencies by recreating a `.julia` structure inside the...
Setting up the files like: ```julia #build.jl build_app_bundle("./src/julia_main.jl", appname="MyCode"); ``` ```julia #julia_main.jl Base.@ccallable function julia_main(ARGS::Vector{String})::Cint return 0 end ``` throws the following error: ```julia julia> include("build.jl") Using calculated bundle_identifier: 'com.lackner.mycode'...
- Snoop file - Target = x86_64 - Desktop shortcut with icon
Hi, I just added ApplicationBuilder by, (v1.0) pkg> add ApplicationBuilder Then, (v1.0 pkg> test Applicationbuilder produces several errors on Ubuntu 18.04, Julia 1.0 (see output below). I also failed to...
Currently ALL the tests assume running on a Mac. Need to add tests for windows and linux!!!
Hey @NHDaly , I'm trying to make this work with Gtk but I'm getting stuck. I've done something a bit similar to your SDL example. I first manually copy all...