|
@@ -1,5 +1,5 @@
|
|
|
# Build VNote
|
|
# Build VNote
|
|
|
-You need **Qt 5.15** and above to build VNote from source.
|
|
|
|
|
|
|
+You need **Qt 6.5** and above, and CMake to build VNote from source.
|
|
|
|
|
|
|
|
## Get the Source Code of VNote
|
|
## Get the Source Code of VNote
|
|
|
VNote's source code is available on [GitHub](https://github.com/vnotex/vnote). You could download the ZIP archive of the code. Please be aware of that VNote depends on some submodules, so you should also download the source codes of these modules.
|
|
VNote's source code is available on [GitHub](https://github.com/vnotex/vnote). You could download the ZIP archive of the code. Please be aware of that VNote depends on some submodules, so you should also download the source codes of these modules.
|
|
@@ -12,97 +12,48 @@ cd vnote.git
|
|
|
git submodule update --init --recursive
|
|
git submodule update --init --recursive
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
-## Get Qt 5.15
|
|
|
|
|
-You could get the standalone Qt SDK from [Qt Downloads](http://info.qt.io/download-qt-for-application-development). For users in China, you could speed up the download via the [TUNA Mirrors](https://mirrors4.tuna.tsinghua.edu.cn/qt/official_releases/qt/5.15/).
|
|
|
|
|
|
|
+## Get Qt6
|
|
|
|
|
+You could get the standalone Qt SDK from [Qt Downloads](http://info.qt.io/download-qt-for-application-development).
|
|
|
|
|
|
|
|
## Windows
|
|
## Windows
|
|
|
-On Windows, you need **Visual Studio 2015** or above to compile VNote (Mingw is **not** supported).
|
|
|
|
|
|
|
+On Windows, you need **Visual Studio 2019** or above to compile VNote (Mingw is **not** supported).
|
|
|
|
|
|
|
|
-Open **Qt Creator** and open `vnote.git\vnote.pro` as project. Now you are ready to tune and compile VNote!
|
|
|
|
|
|
|
+Open **Qt Creator** and open `vnote.git\CMakeLists.txt` as project. Now you are ready to tune and compile VNote!
|
|
|
|
|
|
|
|
## Linux
|
|
## Linux
|
|
|
-In Ubuntu, you could get Qt 5.15 from PPA like this:
|
|
|
|
|
-
|
|
|
|
|
-```sh
|
|
|
|
|
-sudo add-apt-repository ppa:beineri/opt-qt-5.15.10-bionic -y
|
|
|
|
|
-sudo apt-get update -qq
|
|
|
|
|
-sudo apt-get -y install qt512base qt512webengine
|
|
|
|
|
-sudo apt-get -y install qt512webchannel qt512svg qt512location qt512tools qt512translations
|
|
|
|
|
-source /opt/qt*/bin/qt*-env.sh
|
|
|
|
|
-```
|
|
|
|
|
-
|
|
|
|
|
-Then compile and install VNote like this:
|
|
|
|
|
|
|
+For detailed steps, please refer to the [CI script](https://github.com/vnotex/vnote/blob/master/.github/workflows/ci-linux.yml).
|
|
|
|
|
|
|
|
```sh
|
|
```sh
|
|
|
cd vnote.git
|
|
cd vnote.git
|
|
|
mkdir build
|
|
mkdir build
|
|
|
cd build
|
|
cd build
|
|
|
-qmake ../vnote.pro
|
|
|
|
|
-make
|
|
|
|
|
|
|
+cmake ..
|
|
|
|
|
+cmake --build .
|
|
|
sudo make install
|
|
sudo make install
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
-### Fcitx
|
|
|
|
|
-If you use **Fcitx** as the input method, you need to copy the missing library `libfcitxplatforminputcontextplugin.so` to Qt's plugin directory.
|
|
|
|
|
-
|
|
|
|
|
-To find the place of `libfcitxplatforminputcontextplugin.so`, you could execute:
|
|
|
|
|
-
|
|
|
|
|
-```sh
|
|
|
|
|
-fcitx-diagnose | grep libfcitxplatforminputcontextplugin.so
|
|
|
|
|
-```
|
|
|
|
|
-
|
|
|
|
|
-If there is no such lib, you may need to install and configure Fcitx for Qt5 correctly before continue.
|
|
|
|
|
-
|
|
|
|
|
-Then you need to copy the lib to Qt's plugin directory:
|
|
|
|
|
-
|
|
|
|
|
-```
|
|
|
|
|
-<path_to_Qt_installation_directory>/5.15.2/gcc_64/plugins/platforminputcontexts/
|
|
|
|
|
-```
|
|
|
|
|
-
|
|
|
|
|
-### OpenSSL
|
|
|
|
|
-After the installation of openSSL, you could find two lib files:
|
|
|
|
|
-
|
|
|
|
|
-```
|
|
|
|
|
-/usr/lib/libcrypto.so.1.0.0
|
|
|
|
|
-/usr/lib/libssl.so.1.0.0
|
|
|
|
|
-```
|
|
|
|
|
-
|
|
|
|
|
-Copy these two files to Qt's library directory:
|
|
|
|
|
-
|
|
|
|
|
-```
|
|
|
|
|
-<path_to_Qt_installation_directory>/5.15.2/gcc_64/lib/
|
|
|
|
|
-```
|
|
|
|
|
-
|
|
|
|
|
-In Qt's library directory, create symlinks for these two files:
|
|
|
|
|
-
|
|
|
|
|
-```sh
|
|
|
|
|
-ln -s libcrypto.so.1.0.0 libcrypto.so
|
|
|
|
|
-ln -s libssl.so.1.0.0 libssl.so
|
|
|
|
|
-```
|
|
|
|
|
-
|
|
|
|
|
## MacOS
|
|
## MacOS
|
|
|
If you prefer command line on macOS, you could follow these steps.
|
|
If you prefer command line on macOS, you could follow these steps.
|
|
|
|
|
|
|
|
1. Install Xcode and Homebrew;
|
|
1. Install Xcode and Homebrew;
|
|
|
-2. Install Qt 5.15.2 via Homebrew:
|
|
|
|
|
|
|
+2. Install Qt6 via Homebrew:
|
|
|
|
|
|
|
|
```
|
|
```
|
|
|
- brew install qt@5.15.2
|
|
|
|
|
|
|
+ brew install [email protected]
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
3. In the project directory, create `build_macos.sh` like this:
|
|
3. In the project directory, create `build_macos.sh` like this:
|
|
|
|
|
|
|
|
```sh
|
|
```sh
|
|
|
- QTDIR="/usr/local/opt/qt@5.15.2"
|
|
|
|
|
|
|
+ QTDIR="/usr/local/opt/[email protected]"
|
|
|
PATH="$QTDIR/bin:$PATH"
|
|
PATH="$QTDIR/bin:$PATH"
|
|
|
LDFLAGS=-L$QTDIR/lib
|
|
LDFLAGS=-L$QTDIR/lib
|
|
|
CPPFLAGS=-I$QTDIR/include
|
|
CPPFLAGS=-I$QTDIR/include
|
|
|
|
|
|
|
|
mkdir -p build
|
|
mkdir -p build
|
|
|
cd build
|
|
cd build
|
|
|
- qmake -v
|
|
|
|
|
- qmake CONFIG-=debug CONFIG+=release ../vnote.pro
|
|
|
|
|
- make -j2
|
|
|
|
|
|
|
+ cmake ..
|
|
|
|
|
+ cmake --build . --target pack
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
4. Make `build_macos.sh` executable and run it:
|
|
4. Make `build_macos.sh` executable and run it:
|
|
@@ -112,4 +63,4 @@ If you prefer command line on macOS, you could follow these steps.
|
|
|
./build_macos.sh
|
|
./build_macos.sh
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
-5. Now you got the bundle `path/to/project/build/src/vnote.app`.
|
|
|
|
|
|
|
+5. Now you got the bundle `path/to/project/build/src/VNote.dmg`.
|