WrapIt.jl

Author grasph
Popularity
5 Stars
Updated Last
10 Months Ago
Started In
December 2023

Julia package to install WrapIt!

This package will allow installation of WrapIt software using the Julia Binary package manager. WrapIt is an application written in C++ to automatize Julia bindings for C++ libraries.

The examples are not installed and can be downloaded from the wrapit repository.

Usage

Software download is performed through the Julia package manager and its central registry. It is not needed to clone this repository on your computer. The only software needed to start the installation is Julia.

Starts a Jula session and execute the following:

julia> ]
julia> add WrapIt
julia> [backspace]

If you want to launch wrapit outside of the Julia REPL, call the WrapIt.install() function:

julia> using WrapIt
julia> WrapIt.install()

💡 You can provide the directory where to install the command as parameter to the install() function e.g., Wrapit.install("/usr/local/bin"). With no argument, it is installed in the current directory.

If you prefer to lauch wrapit from the Julia REPL, use the wrapit() function:

julia> using WrapIt
julia> wrapit("myconfig.wit", force=true)

See the function help (? wrapit) and run wrapit(help=true) to get help on the command usage. Find examples here and here.