|
|
|
@ -9,6 +9,7 @@ |
|
|
|
- [OpenSUSE Tumbleweed](#opensuse-tumbleweed) |
|
|
|
- [OpenSUSE Tumbleweed](#opensuse-tumbleweed) |
|
|
|
- [GNU Guix/GuixSD](#gnu-guixguixsd) |
|
|
|
- [GNU Guix/GuixSD](#gnu-guixguixsd) |
|
|
|
- [FreeBSD](#freebsd) |
|
|
|
- [FreeBSD](#freebsd) |
|
|
|
|
|
|
|
- [NetBSD](#netbsd) |
|
|
|
- MacOS |
|
|
|
- MacOS |
|
|
|
- [Homebrew](#macos-with-homebrew-httpbrewsh) |
|
|
|
- [Homebrew](#macos-with-homebrew-httpbrewsh) |
|
|
|
- Windows |
|
|
|
- Windows |
|
|
|
@ -134,6 +135,26 @@ guix install jucipp |
|
|
|
|
|
|
|
|
|
|
|
On FreeBSD, latest release of juCi++ is available through the port: jucipp. |
|
|
|
On FreeBSD, latest release of juCi++ is available through the port: jucipp. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## NetBSD |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Install dependencies: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```sh |
|
|
|
|
|
|
|
pkgin -y install lldb ccache doxygen pkg-config aspell-en libgit2 gtksourceviewmm exctags boost |
|
|
|
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Get juCi++ source, compile and install: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```sh |
|
|
|
|
|
|
|
git clone --recursive https://gitlab.com/cppit/jucipp |
|
|
|
|
|
|
|
mkdir -p jucipp/build |
|
|
|
|
|
|
|
cd jucipp/build |
|
|
|
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr/pkg .. |
|
|
|
|
|
|
|
make |
|
|
|
|
|
|
|
su -m |
|
|
|
|
|
|
|
make install |
|
|
|
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
## MacOS with Homebrew (http://brew.sh/) |
|
|
|
## MacOS with Homebrew (http://brew.sh/) |
|
|
|
|
|
|
|
|
|
|
|
Install dependencies: |
|
|
|
Install dependencies: |
|
|
|
|