feat(cursor): add cursor module that stores and updates various cursor images

This commit is contained in:
phaneron 2024-09-06 12:22:01 -04:00
parent 7a2376741d
commit 29bc21a242
4 changed files with 317 additions and 0 deletions

17
src/cursor/CMakeLists.txt Normal file
View file

@ -0,0 +1,17 @@
file(GLOB PRIVATE_SOURCES "*.cpp")
add_library(cursor STATIC
${PRIVATE_SOURCES}
)
target_include_directories(cursor
PRIVATE
${CMAKE_SOURCE_DIR}/src
)
target_link_libraries(cursor
PRIVATE
storm
gx
ui
)