Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
f0reachARR committed Dec 27, 2023
1 parent 5d2e2b7 commit 8c401a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
steps:
- name: Install dependencies
run: |
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y libgl1-mesa-dev \
libsoundio-dev \
Expand All @@ -22,6 +23,7 @@ jobs:
libusb-1.0-0-dev \
libssl-dev \
libudev-dev \
libopencv-dev \
mesa-common-dev \
uuid-dev \
build-essential \
Expand All @@ -40,7 +42,7 @@ jobs:
run: |
mkdir build
cd build
cmake ..
cmake .. -DCUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda-12.3 -DCMAKE_BUILD_TYPE=Release -DCPACK_PACKAGE_CONTACT=ForteFibre
make -j
- name: Create packages
Expand Down
2 changes: 1 addition & 1 deletion src/depth/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the MIT License.

set(CMAKE_CUDA_ARCHITECTURES 53)
set(CMAKE_CUDA_COMPILER /usr/local/cuda-10.2/bin/nvcc)
# set(CMAKE_CUDA_COMPILER /usr/local/cuda-10.2/bin/nvcc)
enable_language(CUDA)
find_package(CUDAToolkit)

Expand Down

0 comments on commit 8c401a9

Please sign in to comment.