diff options
author | Adam <adamdharrison@gmail.com> | 2023-01-11 11:19:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 11:19:40 -0500 |
commit | 70fb50f58c14df819bc86bcf9b2f05377c01ab94 (patch) | |
tree | a44b1593cbc9dc1b5fee11cf4bd5ec3acf3361ea | |
parent | cbe8639a92a243786b20018666f0289a8b02e025 (diff) | |
download | lite-xl-plugin-manager-70fb50f58c14df819bc86bcf9b2f05377c01ab94.tar.gz lite-xl-plugin-manager-70fb50f58c14df819bc86bcf9b2f05377c01ab94.zip |
Update README.md
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -36,21 +36,21 @@ you can do: ``` git clone git@github.com:lite-xl/lite-xl-plugin-manager.git \ --shallow-submodules --recurse-submodules && cd lite-xl-plugin-manager &&\ - ./build.sh && ./lpm + ./build.sh -DLPM_STATIC && ./lpm ```` If you want to build it quickly, and have the right modules installed, you can do: ``` -./build.sh -lgit2 -lzip -llua -lm -lmbedtls -lmbedx509 -lmbedcrypto -lz +./build.sh -lgit2 -lzip -llua -lm -lmbedtls -lmbedx509 -lmbedcrypto -lz -DLPM_STATIC ``` OR ``` gcc src/lpm.c lib/microtar/src/microtar.c -Ilib/microtar/src -lz -lgit2 \ - -lzip -llua -lm -lmbedtls -lmbedx509 -lmbedcrypto -o lpm + -lzip -llua -lm -lmbedtls -lmbedx509 -lmbedcrypto -DLPM_STATIC -o lpm ``` CI is enabled on this repository, so you can grab Windows and Linux builds from the @@ -98,7 +98,7 @@ lpm --help ### Linux & MacOS & Windows MSYS ``` -./build.sh clean && ./build.sh && ./lpm +./build.sh clean && ./build.sh -DLPM_STATIC && ./lpm ``` ### Linux -> Windows |