Skip to content

Commit

Permalink
fix path to precompile.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
visr committed Nov 9, 2023
1 parent 81a2a20 commit 43c85ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/create_binaries/src/create_app.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function build_app()
output_dir;
# map from binary name to julia function name
executables = ["ribasim" => "julia_main"],
precompile_execution_file = "../precompile.jl",
precompile_execution_file = "precompile.jl",
include_lazy_artifacts = true,
force = true,
)
Expand Down
2 changes: 1 addition & 1 deletion build/create_binaries/src/create_lib.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function build_lib()
project_dir,
output_dir;
lib_name = "libribasim",
precompile_execution_file = "../precompile.jl",
precompile_execution_file = "precompile.jl",
include_lazy_artifacts = true,
force = true,
)
Expand Down

0 comments on commit 43c85ae

Please sign in to comment.