Skip to content

Linux Build

equation314 edited this page Jul 2, 2016 · 2 revisions

Linux 构建方法

依赖关系

在构建 CCR Plus 前,你需要先安装下列软件包:

  • Qt
    • Debian: sudo apt-get install qtbase5-dev
  • GCC
    • Debian: sudo apt-get install build-essential

下载源代码

你可以通过下列两种方式获取源代码:

  • 直接下载压缩包并解压。
  • 使用 git 克隆仓库:
    • 安装 git(Debian): sudo apt-get install git
    • 克隆仓库: git clone https://github.com/sxyzccr/CCR-Plus.git

构建

设源代码目录为 CCR-Plus,在终端输入下列命令构建:

cd CCR-Plus
mkdir build && cd build
qmake ..
make

若要使用 debug 模式构建,qmake的命令改为:

qmake .. "CONFIG += debug"

使用

将构建好的可执行文件按下图方式组织:

.
├── checker
│   └── fulltext
├── monitor
└── CCR-Plus

在终端运行 ./CCR-Plus,即可使用。

Clone this wiki locally