File tree 3 files changed +17
-5
lines changed 3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,5 @@ plugins/templates/android/.gradle
14
14
plugins /templates /android /** /build
15
15
16
16
app /tools /glog- *
17
- app /tools /spdlog- *
17
+ app /tools /spdlog- *
18
+ app /scripts /pkg /vc_redist
Original file line number Diff line number Diff line change 1
1
近期规划
2
- 1. 修正 dll 库的导出问题
2
+ 1. 优化 Windows 平台打包成exe的功能
3
+ 2. 修正 dll 库的API导出问题
3
4
4
5
5
6
中期规划
6
7
1. 将加密等模块导入到实用工具中
7
- 2. 添加基于文件夹的软件自动打包功能
8
+ 2. 开发其他平台的打包功能
8
9
9
10
10
11
长期
11
12
1. 开发配置化的插件机制,开发插件模式的实用功能,融入到框架中
12
- 2. 框架适配ios/Android等移动端平台 C++ 项目
13
- 3. 添加框架整体迁移功能,用于工程架构改造
13
+ 2. 添加框架整体迁移功能,用于工程架构改造
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ # satrt docker:
3
+ # Windows: docker run -it -d --shm-size=2g --network=host -v D:\Research:/opt/shared_dir ubuntu2204:v1.0 /bin/bash
4
+ # Linux: docker run -it -d --shm-size=2g --network=host -v $HOME/dockers/shared_dir:/opt/shared_dir ubuntu2204-dev-v1.0 --privileged ubuntu2204:v1.0 /bin/bash
5
+ # docker exec -it a3822da6accba9625129bc63c9fe0001367a7282a7eda0d50783ab90e75c7513 /bin/bash
6
+ #
2
7
# bash /opt/shared_dir/DevAssistant/tools/setup-env.sh
3
8
4
9
# ls -al /bin/sh && dpkg-reconfigure dash => no
@@ -40,6 +45,11 @@ function setup_soft() {
40
45
${SUDO_CMD} apt-get install -y tree wget unzip cmake ninja-build dos2unix
41
46
}
42
47
48
+ function setup_pip() {
49
+ ${SUDO_CMD} apt-get install -y pip
50
+ pip install numpy pandas torch dgl
51
+ }
52
+
43
53
function java_env() {
44
54
${SUDO_CMD} apt search openjdk-17
45
55
${SUDO_CMD} apt-get install -y openjdk-17-jdk
@@ -91,6 +101,7 @@ function android_ndk() {
91
101
setup_source
92
102
setup_cert
93
103
setup_soft
104
+ setup_pip
94
105
java_env
95
106
android_sdk
96
107
android_ndk
You can’t perform that action at this time.
0 commit comments