Skip to content

Commit dc69867

Browse files
committed
Change viewer executable name to 3dgs_viewer
1 parent 714c483 commit dc69867

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/cmake-multi-platform.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,16 @@ jobs:
6565
run: |
6666
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
6767
# echo "vulkan-sdk-dir=${{ github.workspace }}/VULKAN_SDK" >> "$GITHUB_OUTPUT"
68-
echo "artifact-name=3dgs_cpp_viewer-${{ matrix.os }}-${{ matrix.arch }}-nightly" >> "$GITHUB_OUTPUT"
68+
echo "artifact-name=3dgs_viewer-${{ matrix.os }}-${{ matrix.arch }}-nightly" >> "$GITHUB_OUTPUT"
6969
7070
- name: Set artifact path (Windows)
7171
shell: bash
72-
run: echo "ARTIFACT_PATH=${{ github.workspace }}/build/apps/viewer/Release/3dgs_cpp_viewer.exe" >> "$GITHUB_ENV"
72+
run: echo "ARTIFACT_PATH=${{ github.workspace }}/build/apps/viewer/Release/3dgs_viewer.exe" >> "$GITHUB_ENV"
7373
if: runner.os == 'Windows'
7474

7575
- name: Set artifact path (POSIX)
7676
shell: bash
77-
run: echo "ARTIFACT_PATH=${{ github.workspace }}/build/apps/viewer/3dgs_cpp_viewer" >> "$GITHUB_ENV"
77+
run: echo "ARTIFACT_PATH=${{ github.workspace }}/build/apps/viewer/3dgs_viewer" >> "$GITHUB_ENV"
7878
if: runner.os != 'Windows'
7979

8080
- name: Install dependencies

apps/viewer/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
cmake_minimum_required(VERSION 3.26)
2-
project(3dgs_cpp_viewer)
2+
project(3dgs_viewer)
33

4-
add_executable(3dgs_cpp_viewer main.cpp)
4+
add_executable(3dgs_viewer main.cpp)
55

6-
target_include_directories(3dgs_cpp_viewer PRIVATE third_party)
6+
target_include_directories(3dgs_viewer PRIVATE third_party)
77

8-
target_link_libraries(3dgs_cpp_viewer PRIVATE
8+
target_link_libraries(3dgs_viewer PRIVATE
99
libenvpp::libenvpp
1010
3dgs_cpp)

0 commit comments

Comments
 (0)