diff options
author | 3gg <3gg@shellblade.net> | 2024-01-20 15:54:54 -0800 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2024-01-20 15:54:54 -0800 |
commit | 3cd5b0bcca694630fcb4b977ddf7be7cd1bce153 (patch) | |
tree | e1a0e02ab5471d0f2ffb499f18109d6790241798 | |
parent | 02ec7cd07213e267fda7e1e67b62f55e92a2f32c (diff) |
Rename gltfview -> game.
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | game/CMakeLists.txt (renamed from gltfview/CMakeLists.txt) | 8 | ||||
-rw-r--r-- | game/src/game.c (renamed from gltfview/src/game.c) | 0 | ||||
-rw-r--r-- | game/src/game.h (renamed from gltfview/src/game.h) | 0 | ||||
-rw-r--r-- | game/src/plugins/CMakeLists.txt (renamed from gltfview/src/plugins/CMakeLists.txt) | 0 | ||||
-rw-r--r-- | game/src/plugins/gltf_view.c (renamed from gltfview/src/plugins/gltf_view.c) | 0 | ||||
-rw-r--r-- | game/src/plugins/plugin.h (renamed from gltfview/src/plugins/plugin.h) | 0 | ||||
-rw-r--r-- | game/src/plugins/texture_view.c (renamed from gltfview/src/plugins/texture_view.c) | 0 |
8 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a0cd5a..6ec4a34 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -3,4 +3,4 @@ cmake_minimum_required(VERSION 3.0) | |||
3 | add_subdirectory(gfx) | 3 | add_subdirectory(gfx) |
4 | add_subdirectory(gfx-app) | 4 | add_subdirectory(gfx-app) |
5 | add_subdirectory(gfx-iso) | 5 | add_subdirectory(gfx-iso) |
6 | add_subdirectory(gltfview) | 6 | add_subdirectory(game) |
diff --git a/gltfview/CMakeLists.txt b/game/CMakeLists.txt index 98c3b47..3a88bb7 100644 --- a/gltfview/CMakeLists.txt +++ b/game/CMakeLists.txt | |||
@@ -2,15 +2,15 @@ cmake_minimum_required(VERSION 3.0) | |||
2 | 2 | ||
3 | add_subdirectory(src/plugins) | 3 | add_subdirectory(src/plugins) |
4 | 4 | ||
5 | project(gltfview) | 5 | project(game) |
6 | 6 | ||
7 | add_executable(gltfview | 7 | add_executable(game |
8 | src/game.c) | 8 | src/game.c) |
9 | 9 | ||
10 | target_include_directories(gltfview PRIVATE | 10 | target_include_directories(game PRIVATE |
11 | src/) | 11 | src/) |
12 | 12 | ||
13 | target_link_libraries(gltfview PRIVATE | 13 | target_link_libraries(game PRIVATE |
14 | cstring | 14 | cstring |
15 | error | 15 | error |
16 | gfx | 16 | gfx |
diff --git a/gltfview/src/game.c b/game/src/game.c index 64be4f3..64be4f3 100644 --- a/gltfview/src/game.c +++ b/game/src/game.c | |||
diff --git a/gltfview/src/game.h b/game/src/game.h index 93a5e39..93a5e39 100644 --- a/gltfview/src/game.h +++ b/game/src/game.h | |||
diff --git a/gltfview/src/plugins/CMakeLists.txt b/game/src/plugins/CMakeLists.txt index ecb2a45..ecb2a45 100644 --- a/gltfview/src/plugins/CMakeLists.txt +++ b/game/src/plugins/CMakeLists.txt | |||
diff --git a/gltfview/src/plugins/gltf_view.c b/game/src/plugins/gltf_view.c index c19d1b8..c19d1b8 100644 --- a/gltfview/src/plugins/gltf_view.c +++ b/game/src/plugins/gltf_view.c | |||
diff --git a/gltfview/src/plugins/plugin.h b/game/src/plugins/plugin.h index a2632cd..a2632cd 100644 --- a/gltfview/src/plugins/plugin.h +++ b/game/src/plugins/plugin.h | |||
diff --git a/gltfview/src/plugins/texture_view.c b/game/src/plugins/texture_view.c index b424158..b424158 100644 --- a/gltfview/src/plugins/texture_view.c +++ b/game/src/plugins/texture_view.c | |||