- 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
Toolips.new_app("ExampleApp")
cd("ExampleApp")
using ToolipsExport
build(so)
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.
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)
Toolips.new_app("ExampleApp")
cd("ExampleApp")
using ToolipsExport
buildall()
# build only some:
buildall([server, app])