add file watcher using widows api for windows platform, using handles to import and manager assets, some little tweaks

This commit is contained in:
2026-01-21 23:25:41 +08:00
parent cf3a46bae1
commit 896d3c7f97
15 changed files with 837 additions and 474 deletions

View File

@ -5,6 +5,10 @@ set(CMAKE_BINARY_DIR ${CMAKE_BINARY_DIR}/bin)
file(GLOB ASSETS assets)
file(COPY ${ASSETS} DESTINATION ${CMAKE_BINARY_DIR})
# imgui.ini file
file(GLOB IMGUI_INI imgui.ini)
file(COPY ${IMGUI_INI} DESTINATION ${CMAKE_BINARY_DIR})
file(GLOB DOTNET_LIBRARY library)
file(COPY ${DOTNET_LIBRARY} DESTINATION ${CMAKE_BINARY_DIR})