Skip to content

Commit

Permalink
Merge pull request #30 from guanshaoheng/master
Browse files Browse the repository at this point in the history
PretextView v1.0.0
  • Loading branch information
additive3 authored Jan 23, 2025
2 parents 0cc4ed3 + c95ac17 commit 9b61687
Show file tree
Hide file tree
Showing 56 changed files with 18,617 additions and 3,832 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build and Test

# run the workflow on push to master branch or pull request to master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
strategy:
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]

runs-on: ${{ matrix.os }}
steps:
- name: Check runner OS
run: echo "Runner OS is ${{ runner.os }}"

- name: Checkout code
uses: actions/checkout@v2

- name: install GL and x11 for Linux
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install libgl1-mesa-dev libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev
- name: Run install script on Windows
if: runner.os == 'Windows'
shell: cmd
run: |
install.cmake.bat
- name: Run install script on Unix (Linux/macOS)
if: runner.os != 'Windows'
run: |
chmod +x ./install.cmake.sh
./install.cmake.sh
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: "${{ matrix.os }}-packages"
path: |
build_cmake/*.deb
build_cmake/*.dmg
build_cmake/*.exe
build_cmake/*.zip
build_cmake/*.msi
44 changes: 44 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
.vscode/
app/
ascii.dSYM/
build_cmake/
builddir/
.DS_Store

python/

subprojects/eigen
subprojects/glfw
subprojects/glm
subprojects/imgui
subprojects/libdeflate
subprojects/libtorch
subprojects/OpenBLAS
subprojects/pytorch_scatter


PretextView_ScreenShot.png

imgui.ini

libtorch-macos-arm64-2.5.0.zip

meson.original copy.build

todos.md


*.app
*.dmg

logs/

.gitignore

ico_design/*
include/GLFW/glfw3.h
include/GLFW/glfw3native.h
include/libdeflate.h
src/aisort_cz.cpp
src/aisort_cz.h
PretextViewAI.zip
14 changes: 12 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
[submodule "libdeflate"]
path = libdeflate

[submodule "subprojects/libdeflate"]
path = subprojects/libdeflate
url = https://github.com/ebiggers/libdeflate
[submodule "subprojects/glfw"]
path = subprojects/glfw
url = https://github.com/glfw/glfw
[submodule "subprojects/glm"]
path = subprojects/glm
url = https://github.com/g-truc/glm.git
[submodule "subprojects/imgui"]
path = subprojects/imgui
url = https://github.com/ocornut/imgui.git
[submodule "subprojects/pytorch_scatter"]
path = subprojects/pytorch_scatter
url = https://github.com/guanshaoheng/pytorch_scatter.git
2 changes: 1 addition & 1 deletion AGPCorrect
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ print(
)
),
sep="\n",
)
)
Loading

0 comments on commit 9b61687

Please sign in to comment.