diff options
author | Adam <adamdharrison@gmail.com> | 2022-09-15 16:19:37 -0400 |
---|---|---|
committer | Adam <adamdharrison@gmail.com> | 2022-09-15 16:19:37 -0400 |
commit | ffe7944b6ef36204d59fd04b12ea7119942c9fd5 (patch) | |
tree | f1f00320bcecb2e4b8403ae2c6c20405852c5f49 | |
parent | e1be17d5ad553a78e24e9744461d1fd682dca54b (diff) | |
download | lite-xl-plugin-manager-ffe7944b6ef36204d59fd04b12ea7119942c9fd5.tar.gz lite-xl-plugin-manager-ffe7944b6ef36204d59fd04b12ea7119942c9fd5.zip |
Fixed build script.
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | build.sh | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -6,6 +6,8 @@ Can be used by a package manager plugin that works from inside the editor and ca Releases forthcoming, should be available on Windows, Mac, Linux and FreeBSD. +Also contains a plugin_manager.lua plugin to integrate the binary with lite in the form of an easy-to-use GUI. + ## Quickstart If you have a C compiler, and `git`, and want to compile from scratch, you can do: @@ -38,4 +38,4 @@ xxd -i lpm.lua > lpm.lua.c [[ $OSTYPE == 'msys'* || $CC == *'mingw'* ]] && LDFLAGS="$LDFLAGS -lws2_32 -lz -lwinhttp -lole32 -lcrypt32 -lrpcrt4" [[ "$@" != *" -g "* || "$@" != *" -O"* ]] && CFLAGS="$CFLAGS -O3" && LDFLAGS="$LDFLAGS -s" -$CC $CFLAGS $SRCS $@ -o lpm $LDFLAGS +$CC $CFLAGS $SRCS $@ -o $BIN $LDFLAGS |