feat: DebugOverlay for rendering debug information

This commit is contained in:
Florian Sylvain
2025-05-11 02:22:11 +02:00
parent 9b65954776
commit e493cf4b58
6 changed files with 73 additions and 4 deletions
+6
View File
@@ -18,3 +18,9 @@ file(GLOB_RECURSE HEADERS CONFIGURE_DEPENDS src/*.hpp)
add_executable(SFMLplayground ${SOURCES} ${HEADERS})
target_compile_features(SFMLplayground PRIVATE cxx_std_17)
target_link_libraries(SFMLplayground PRIVATE SFML::Graphics)
add_custom_command(
TARGET SFMLplayground POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_SOURCE_DIR}/src/assets $<TARGET_FILE_DIR:SFMLplayground>/assets
)