...
 
Commits (2)
    https://gitcode.net/kl222/SerialPortAssistant/-/commit/cadca4ba66f68e5ff2d0e59ce8fa5fa34fa1e5b9 Modify README 2023-08-30T10:42:28+08:00 Kang Lin kl222@126.com https://gitcode.net/kl222/SerialPortAssistant/-/commit/dc1649f73d8af9fd3d4b520a761e42a76a3dded6 Modify ChangeLog 2023-08-31T15:53:26+08:00 Kang Lin kl222@126.com
Change log
----------
+ Version: v0.5.16
- FIX: DockDebugLog core dump. See: https://github.com/KangLin/RabbitCommon/commit/af2e434e39af35876113436ead2a946efcf74199
+ Version: v0.5.15
- Use RabbitCommon v2
- Add CMakeLists.txt
......@@ -26,7 +27,7 @@ Change log
+ Version: v0.5.10
- FIX: divide by 0 crash. Affects all previous releases.
See RabbitCommon: 7ed300a206d8a36c30003b6c19ad181682d0ff5f
See https://github.com/KangLin/RabbitCommon/commit/7ed300a206d8a36c30003b6c19ad181682d0ff5f
+ Version: v0.5.9
- Add mirror repository
......
修改日志
------
+ 版本: v0.5.16
- 修复 DockDebugLog 崩溃. 详见: https://github.com/KangLin/RabbitCommon/commit/af2e434e39af35876113436ead2a946efcf74199
+ 版本: v0.5.15
- 使用 RabbitCommon v2
......@@ -26,7 +26,7 @@
+ 版本: v0.5.10
- 修复除 0 引起的崩溃。影响前面所有发行版本。此错误是 RabbitCommon 引起的。
详见:RabbitCommon: 7ed300a206d8a36c30003b6c19ad181682d0ff5f
详见: https://github.com/KangLin/RabbitCommon/commit/7ed300a206d8a36c30003b6c19ad181682d0ff5f
+ 版本: v0.5.9
- 增加镜像库
......
......@@ -110,15 +110,23 @@ If it cannot be displayed, please open:
If it is a different directory, Set the parameter RabbitCommon_DIR
+ Direct compilation can generate programs
- Compile with the command line
+ Build the build directory in the project root directory
+ Download source code and the deplendence in same directory
git clone https://github.com/KangLin/RabbitCommon.git
git clone https://github.com/KangLin/SerialPortAssistant.git
+ Make the build directory in the project root directory
cd SerialPortAssistant
mkdir build
cd build
cmake .. --config Release [-DRabbitCommon_DIR=...]
cmake --build . --config Release --traget install
cd install #The program is generated in the install directory
# cmake configure
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=`pwd`/install [-DRabbitCommon_DIR=...]
# compiling
cmake --build . --config Release --target install
cd install # The program is installed in the install/bin directory
### Script
### Script
- build_debpackage.sh
+ This script generates the deb package under linux.
......
......@@ -104,16 +104,23 @@
* 如果 RabbitCommon 不在本项目同级目录中,设置参数 RabbitCommon_DIR 指定其位置。
* 直接编译就可以生成程序
- 用命令行编译
* 在同一目录中下载源码与依赖
git clone https://github.com/KangLin/RabbitCommon.git
git clone https://github.com/KangLin/SerialPortAssistant.git
* 在项目根目录下建立 build 目录
* cmake 生成编译工程
cd SerialPortAssistant
mkdir build
cd build
cmake .. --config Release [-DRabbitCommon_DIR=...]
cmake --build . --config Release --traget install
cd install #进入生成的程序目录
# cmake 配置
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=`pwd`/install [-DRabbitCommon_DIR=...]
# 编译
cmake --build . --config Release --target install
cd install # 程序安装在 install/bin 目录下
#### 脚本
#### 脚本
- build_debpackage.sh
+ 此脚本是 linux 下生成 deb 包的。使用前,请确保安装了下面程序
......