-
-
Notifications
You must be signed in to change notification settings - Fork 972
Build
刘宇峰 edited this page Oct 8, 2022
·
6 revisions
Use LiteIDE development golang need to install the Go language development environment.
Begin by installing the Go language runtime. Detailed instructions can be found at http://golang.org/doc/install.html. Testing your installation before continuing is highly recommended.
Download the archive and extract it into c:\
Download the archive and extract it into /usr/local or $HOME
Source code for LiteIDE can be found at https://github.com/visualfc/liteide. You will need to install Qt4/Qt5 in order to compile the source. Qt can be obtained from https://qt-project.org/downloads or from your distribution's package manager.
> git clone https://github.com/visualfc/liteide.git
> set QTDIR=c:\Qt\Qt484
> set MINGWDIR=c:\Qt\MinGW
> cd liteide/build
> update_pkg.cmd
> build_mingw.cmd
> deploy_qt4.8_webkit.cmd
$ git clone https://github.com/visualfc/liteide.git
$ export QTDIR=$HOME/QtSDK/Desktop/Qt/484/gcc
$ cd liteide/build
$ ./update_pkg.sh
$ ./build_linux.sh
$ ./deploy_linux_qt4.8_webkit.sh
$ git clone https://github.com/visualfc/liteide.git
$ export QTDIR=$HOME/QtSDK/Desktop/Qt/484/gcc
$ cd liteide/build
$ ./update_pkg.sh
$ ./build_osx.sh
$ ./deploy_osx_qt4.sh
Be sure to set QTDIR
(and MINGWDIR
for Windows users) accordingly based on your local environment.