Skip to content

Commit 9b61687

Browse files
authored
Merge pull request #30 from guanshaoheng/master
PretextView v1.0.0
2 parents 0cc4ed3 + c95ac17 commit 9b61687

56 files changed

Lines changed: 18617 additions & 3832 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Build and Test
2+
3+
# run the workflow on push to master branch or pull request to master branch
4+
on:
5+
push:
6+
branches: [ master ]
7+
pull_request:
8+
branches: [ master ]
9+
10+
jobs:
11+
build:
12+
strategy:
13+
matrix:
14+
os: [ windows-latest, ubuntu-latest, macos-latest ]
15+
16+
runs-on: ${{ matrix.os }}
17+
steps:
18+
- name: Check runner OS
19+
run: echo "Runner OS is ${{ runner.os }}"
20+
21+
- name: Checkout code
22+
uses: actions/checkout@v2
23+
24+
- name: install GL and x11 for Linux
25+
if: runner.os == 'Linux'
26+
run: |
27+
sudo apt-get update
28+
sudo apt-get install libgl1-mesa-dev libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev
29+
30+
- name: Run install script on Windows
31+
if: runner.os == 'Windows'
32+
shell: cmd
33+
run: |
34+
install.cmake.bat
35+
36+
- name: Run install script on Unix (Linux/macOS)
37+
if: runner.os != 'Windows'
38+
run: |
39+
chmod +x ./install.cmake.sh
40+
./install.cmake.sh
41+
42+
- name: Upload artifact
43+
uses: actions/upload-artifact@v4
44+
with:
45+
name: "${{ matrix.os }}-packages"
46+
path: |
47+
build_cmake/*.deb
48+
build_cmake/*.dmg
49+
build_cmake/*.exe
50+
build_cmake/*.zip
51+
build_cmake/*.msi
52+

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
.vscode/
2+
app/
3+
ascii.dSYM/
4+
build_cmake/
5+
builddir/
6+
.DS_Store
7+
8+
python/
9+
10+
subprojects/eigen
11+
subprojects/glfw
12+
subprojects/glm
13+
subprojects/imgui
14+
subprojects/libdeflate
15+
subprojects/libtorch
16+
subprojects/OpenBLAS
17+
subprojects/pytorch_scatter
18+
19+
20+
PretextView_ScreenShot.png
21+
22+
imgui.ini
23+
24+
libtorch-macos-arm64-2.5.0.zip
25+
26+
meson.original copy.build
27+
28+
todos.md
29+
30+
31+
*.app
32+
*.dmg
33+
34+
logs/
35+
36+
.gitignore
37+
38+
ico_design/*
39+
include/GLFW/glfw3.h
40+
include/GLFW/glfw3native.h
41+
include/libdeflate.h
42+
src/aisort_cz.cpp
43+
src/aisort_cz.h
44+
PretextViewAI.zip

.gitmodules

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1-
[submodule "libdeflate"]
2-
path = libdeflate
1+
2+
[submodule "subprojects/libdeflate"]
3+
path = subprojects/libdeflate
34
url = https://github.com/ebiggers/libdeflate
45
[submodule "subprojects/glfw"]
56
path = subprojects/glfw
67
url = https://github.com/glfw/glfw
8+
[submodule "subprojects/glm"]
9+
path = subprojects/glm
10+
url = https://github.com/g-truc/glm.git
11+
[submodule "subprojects/imgui"]
12+
path = subprojects/imgui
13+
url = https://github.com/ocornut/imgui.git
14+
[submodule "subprojects/pytorch_scatter"]
15+
path = subprojects/pytorch_scatter
16+
url = https://github.com/guanshaoheng/pytorch_scatter.git

AGPCorrect

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ print(
9191
)
9292
),
9393
sep="\n",
94-
)
94+
)

0 commit comments

Comments
 (0)