summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2024-01-20 15:54:54 -0800
committer3gg <3gg@shellblade.net>2024-01-20 15:54:54 -0800
commit3cd5b0bcca694630fcb4b977ddf7be7cd1bce153 (patch)
treee1a0e02ab5471d0f2ffb499f18109d6790241798
parent02ec7cd07213e267fda7e1e67b62f55e92a2f32c (diff)
Rename gltfview -> game.
-rw-r--r--CMakeLists.txt2
-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)
3add_subdirectory(gfx) 3add_subdirectory(gfx)
4add_subdirectory(gfx-app) 4add_subdirectory(gfx-app)
5add_subdirectory(gfx-iso) 5add_subdirectory(gfx-iso)
6add_subdirectory(gltfview) 6add_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
3add_subdirectory(src/plugins) 3add_subdirectory(src/plugins)
4 4
5project(gltfview) 5project(game)
6 6
7add_executable(gltfview 7add_executable(game
8 src/game.c) 8 src/game.c)
9 9
10target_include_directories(gltfview PRIVATE 10target_include_directories(game PRIVATE
11 src/) 11 src/)
12 12
13target_link_libraries(gltfview PRIVATE 13target_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