ToolipsExport.jl

Export toolips apps to executables and mobile apps !
Author ChifiSource
Popularity
7 Stars
Updated Last
1 Year Ago
Started In
July 2022

  • Documentation
  • Toolips
  • Extension Gallery
    This module allows you to compile toolips apps into executable files and shared libraries. Future plans are also to port this to ARM64 and mobile. Currently available exports are:
  • so: A shared library
  • app: An Electron-based application
  • server: An executable server

Compiling a shared library (.so)

Toolips.new_app("ExampleApp")

cd("ExampleApp")

using ToolipsExport

build(so)

Compiling an application (elf64/.exe)

note: unfortunately, you will only be able to compile apps for your current system. If you would like to compile them for another system, instead compile this to a shared library and distribute this with an executable that uses the shared library.

Toolips.new_app("ExampleApp")

cd("ExampleApp")

using ToolipsExport

build(app)

# the title of the window will be the title that we write in toolips.

Compiling an executable server (elf64/.exe)

note: unfortunately, you will only be able to compile servers for your current system. If you would like to compile them for another system, instead compile this to a shared library and distribute this with an executable that uses the shared library.

Toolips.new_app("ExampleApp")

cd("ExampleApp")

using ToolipsExport

build(server)

Build multiple

Toolips.new_app("ExampleApp")

cd("ExampleApp")

using ToolipsExport

buildall()
# build only some:
buildall([server, app])

Used By Packages

No packages found.