ApplicationBuilder.jl icon indicating copy to clipboard operation
ApplicationBuilder.jl copied to clipboard

[deprecated] Compile, bundle, and release julia software

Results 26 ApplicationBuilder.jl issues
Sort by recently updated
recently updated
newest added

this is a very simple demo ```julia Base.@ccallable function julia_main(ARGS::Vector{String})::Cint println("Hello World") return 0 end ``` and when calling `build_app_bundle("src/parse_command.jl", appname = "MyCode")` ``` Stacktrace: [1] jl_option_value(opts::Base.JLOptions, key::Symbol) @ PackageCompiler...

I'm trying to learn how to use ApplicationBuilder.jl to build a standalone fully independent application for windows. for example, the following function could be the code for the app: ```...

Hi, I am developing a code to run without Julia installed and this package is great for that. However, I have depreciation warning at the beginning of my code that...

You're receiving this pull request because the now-deprecated [Julia TagBot GitHub App](https://github.com/apps/julia-tagbot) is installed for this repository. This pull request installs [TagBot as a GitHub Action](https://github.com/marketplace/actions/julia-tagbot). If this PR does...

I am trying to build the example on MacOS with Julia 1.1 (self-built). This does not work: ``` julia> build_app_bundle("/Users/eschnett/.julia/packages/ApplicationBuilder/kMUzZ/examples/hello.jl", appname="hello") Using calculated bundle_identifier: 'com.eschnett.hello' ~~~~~~ Creating mac app in...

Fixes as per [#56](https://github.com/NHDaly/ApplicationBuilder.jl/issues/56)

I've successfully used ApplicationBuilder on MacOS and Linux Mint using a couple of different source files. (Success meaning the build process completes and I'm able to run the resulting app.)...

This is an open thread for discussing one of the big remaining problems with ApplicationBuilder/PackageCompiler: Handling binary dependencies. The state of the world: Many packages depend on external shared libraries,...

discussion

Very usefull pacake, thanks, Now Itraying use ReadStat.jl packages Code is simply : ``` using StatFiles, DataFrames, ReadStat, DelimitedFiles, JLD2,FileIO, Dates Base.@ccallable function julia_main(ARGS::Vector{String})::Cint df=DataFrame(load("File_data.sav")) dane=convert(Matrix, df) k,l=size(dane) danes=read_sav("File_data.sav"); save("dane.jld2","dane",dane)...

Hello @NHDaly , thank you very much for this GREAT package, i am in love with `Julialang` having said that 👍 . I had a couple of problems in Windows...