Skip to content

Commit d22d558

Browse files
committed
Rename project
Resolves #8
1 parent 0de2308 commit d22d558

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
- os: ubuntu-latest
1717
platform: linux
1818
exe_extension: ""
19-
artifact_name: trender-linux
19+
artifact_name: qun-linux
2020
vcpkg_triplet: x64-linux
2121
- os: windows-latest
2222
platform: windows
2323
exe_extension: ".exe"
24-
artifact_name: trender-windows
24+
artifact_name: qun-windows
2525
vcpkg_triplet: x64-windows-static
2626

2727
steps:
@@ -105,16 +105,16 @@ jobs:
105105
if: matrix.os == 'ubuntu-latest'
106106
run: |
107107
mkdir -p artifact
108-
cp release/trender artifact/
108+
cp release/qun artifact/
109109
cp -r release/resources artifact/ || true
110110
cp -r release/shaders artifact/ || true
111-
chmod +x artifact/trender
111+
chmod +x artifact/qun
112112
113113
- name: Copy resources and assets (Windows)
114114
if: matrix.os == 'windows-latest'
115115
run: |
116116
New-Item -ItemType Directory -Force -Path artifact
117-
Copy-Item release/trender.exe artifact/
117+
Copy-Item release/qun.exe artifact/
118118
if (Test-Path release/resources) { Copy-Item -Recurse release/resources artifact/ }
119119
if (Test-Path release/shaders) { Copy-Item -Recurse release/shaders artifact/ }
120120
@@ -134,25 +134,25 @@ jobs:
134134
- name: Download Linux artifact
135135
uses: actions/download-artifact@v4
136136
with:
137-
name: trender-linux
138-
path: trender-linux/
137+
name: qun-linux
138+
path: qun-linux/
139139

140140
- name: Download Windows artifact
141141
uses: actions/download-artifact@v4
142142
with:
143-
name: trender-windows
144-
path: trender-windows/
143+
name: qun-windows
144+
path: qun-windows/
145145

146146
- name: Create release archives
147147
run: |
148-
cd trender-linux && tar -czf ../trender-linux.tar.gz * && cd ..
149-
cd trender-windows && zip -r ../trender-windows.zip * && cd ..
148+
cd qun-linux && tar -czf ../qun-linux.tar.gz * && cd ..
149+
cd qun-windows && zip -r ../qun-windows.zip * && cd ..
150150
151151
- name: Upload release archives
152152
uses: actions/upload-artifact@v4
153153
with:
154-
name: trender-release-packages
154+
name: qun-release-packages
155155
path: |
156-
trender-linux.tar.gz
157-
trender-windows.zip
156+
qun-linux.tar.gz
157+
qun-windows.zip
158158
retention-days: 90

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"type": "lldb",
99
"request": "launch",
1010
"name": "Launch",
11-
"program": "${workspaceFolder}/release/trender",
11+
"program": "${workspaceFolder}/release/qun",
1212
"args": [],
1313
"cwd": "${workspaceFolder}/release"
1414
}

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.20)
2-
project(trender VERSION 0.1.0 LANGUAGES C CXX)
2+
project(qun VERSION 0.1.0 LANGUAGES C CXX)
33

44
find_package(OpenGL REQUIRED)
55
find_package(glfw3 REQUIRED)
@@ -29,8 +29,8 @@ target_include_directories(entt INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty
2929
# fastgltf
3030
add_subdirectory(thirdparty/fastgltf)
3131

32-
# TRender
33-
add_executable(trender
32+
# qun
33+
add_executable(qun
3434
./src/main.cpp
3535
./src/game.cpp
3636
./src/input/raw/keyboard.cpp
@@ -70,15 +70,15 @@ add_executable(trender
7070
./src/scenes/nfs.cpp
7171
)
7272

73-
target_include_directories(trender
73+
target_include_directories(qun
7474
PRIVATE
7575
./thirdparty
7676
./thirdparty/fastgltf/include
7777
./thirdparty/glad/include
7878
./src
7979
)
8080

81-
target_link_libraries(trender
81+
target_link_libraries(qun
8282
glad
8383
rapidobj
8484
entt

LICENSE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ to attach them to the start of each source file to most effectively
631631
state the exclusion of warranty; and each file should have at least
632632
the "copyright" line and a pointer to where the full notice is found.
633633

634-
TRender - A game engine and renderer in modern C++
634+
Qun - A game engine and renderer in modern C++
635635
Copyright (C) 2025 David Cruz
636636

637637
This program is free software: you can redistribute it and/or modify
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
652652
If the program does terminal interaction, make it output a short
653653
notice like this when it starts in an interactive mode:
654654

655-
TRender Copyright (C) 2025 David Cruz
655+
Qun Copyright (C) 2025 David Cruz
656656
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657657
This is free software, and you are welcome to redistribute it
658658
under certain conditions; type `show c' for details.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# trender
1+
# qun
22

33
This is an attempt to make a simple game engine / renderer using modern OpenGL (4.5) and C++ (23)
44

@@ -43,7 +43,7 @@ int main() {
4343
1. You **must** clone the repository with submodules, as most dependencies are submodules.
4444

4545
```sh
46-
git clone https://github.com/DvvCz/trender --recurse-submodules
46+
git clone https://github.com/DvvCz/qun --recurse-submodules
4747
```
4848

4949
2. Ensure you have system dependencies. This relies on `opengl`, `glm` and `glfw` which you may need to install development packages for on your system.

0 commit comments

Comments
 (0)