From 1993da76fc92ee9065ed4af6305272f72685b63d Mon Sep 17 00:00:00 2001 From: realtradam Date: Tue, 11 Apr 2023 22:39:17 -0400 Subject: rename to RodeoKit --- .gitmodules | 2 +- CMakeLists.txt | 8 ++++---- external/RodeoEngine | 1 - external/RodeoKit | 1 + 4 files changed, 6 insertions(+), 6 deletions(-) delete mode 160000 external/RodeoEngine create mode 160000 external/RodeoKit diff --git a/.gitmodules b/.gitmodules index 45bc128..c562eed 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "external/RodeoEngine"] - path = external/RodeoEngine + path = external/RodeoKit url = https://github.com/realtradam/RodeoEngine.git diff --git a/CMakeLists.txt b/CMakeLists.txt index f6b5cb9..0925752 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,9 +10,9 @@ add_executable(${PROJECT_NAME} set_property(TARGET ${PROJECT_NAME} PROPERTY C_STANDARD 11) -add_subdirectory(external/RodeoEngine) +add_subdirectory(external/RodeoKit) add_dependencies(${PROJECT_NAME} RodeoKit) -target_include_directories(${PROJECT_NAME} PUBLIC external/RodeoEngine/include) +target_include_directories(${PROJECT_NAME} PUBLIC external/RodeoKit/include) target_link_libraries(${PROJECT_NAME} PUBLIC RodeoKit) if(DEFINED EMSCRIPTEN) @@ -22,7 +22,7 @@ if(DEFINED EMSCRIPTEN) set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS - "--preload-file ${PROJECT_SOURCE_DIR}/external/RodeoEngine/build_dir/shaders@shaders --preload-file ${PROJECT_SOURCE_DIR}/assets@assets --use-preload-plugins" + "--preload-file ${PROJECT_SOURCE_DIR}/external/RodeoKit/build_dir/shaders@shaders --preload-file ${PROJECT_SOURCE_DIR}/assets@assets --use-preload-plugins" ) endif() @@ -39,7 +39,7 @@ if (NOT DEFINED EMSCRIPTEN) add_custom_command(TARGET ${PROJECT_NAME} PRE_BUILD DEPENDS RodeoKit COMMAND ${CMAKE_COMMAND} -E copy_directory - ${CMAKE_SOURCE_DIR}/external/RodeoEngine/build_dir/shaders $/shaders + ${CMAKE_SOURCE_DIR}/external/RodeoKit/build_dir/shaders $/shaders ) # copy over assets to build directory diff --git a/external/RodeoEngine b/external/RodeoEngine deleted file mode 160000 index 7506dd3..0000000 --- a/external/RodeoEngine +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 7506dd3f0983485348a7483cf65aef6a12e4270c diff --git a/external/RodeoKit b/external/RodeoKit new file mode 160000 index 0000000..7506dd3 --- /dev/null +++ b/external/RodeoKit @@ -0,0 +1 @@ +Subproject commit 7506dd3f0983485348a7483cf65aef6a12e4270c -- cgit v1.2.3