ChifiSource / ToolipsExport.jl

Export toolips apps to executables and mobile apps !

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


  • 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])

About

Export toolips apps to executables and mobile apps !

License:MIT License


Languages

Language:Julia 100.0%