Skip to content

Commit

Permalink
Move the generated wrappers to src/lib
Browse files Browse the repository at this point in the history
  • Loading branch information
ViralBShah committed Aug 22, 2023
1 parent f140b52 commit 4cfc6e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gen/generate.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
library_name = "" # depends on header file
# library_names = {}\
# output_file_path = "../lib/file.jl"
output_api_file_path = "../lib/libsundials_api.jl"
output_common_file_path = "../lib/libsundials_common.jl"
output_api_file_path = "../src/lib/libsundials_api.jl"
output_common_file_path = "../src/lib/libsundials_common.jl"
prologue_file_path = "prologue.jl"
# epilogue_file_path = "epilogue.jl"
use_julia_native_enum_type = false
Expand Down
4 changes: 2 additions & 2 deletions src/Sundials.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ const libsundials_sunnonlinsol = libsundials_cvode

const SPARSE_SOLVERS = (:KLU,)

include("../lib/libsundials_common.jl")
include("./lib/libsundials_common.jl")
include("types_and_consts_additions.jl")

include("handle.jl")
include("nvector_wrapper.jl")

include("../lib/libsundials_api.jl")
include("./lib/libsundials_api.jl")

for ff in names(@__MODULE__; all = true)
fname = string(ff)
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 4cfc6e2

Please sign in to comment.