Skip to content

Commit

Permalink
Move null renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-johansson committed Oct 8, 2024
1 parent ecee443 commit db09205
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ if (TACTILE_BUILD_ZSTD_COMPRESSION)
add_subdirectory("source/plugins/zstd")
endif ()

add_subdirectory("source/null_renderer")
add_subdirectory("source/renderers/null")

if (TACTILE_BUILD_OPENGL_RENDERER)
add_subdirectory("source/opengl_renderer")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project(tactile-null-renderer CXX)
project(tactile-renderers-null CXX)

find_package(Stb REQUIRED)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project(tactile-null-renderer-lib CXX)
project(tactile-renderers-null-lib CXX)

add_library(tactile-null-renderer SHARED)
add_library(tactile::null_renderer ALIAS tactile-null-renderer)
Expand Down

0 comments on commit db09205

Please sign in to comment.