mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 19:22:30 +00:00
feat(cursor): add cursor module that stores and updates various cursor images
This commit is contained in:
parent
7a2376741d
commit
29bc21a242
4 changed files with 317 additions and 0 deletions
17
src/cursor/CMakeLists.txt
Normal file
17
src/cursor/CMakeLists.txt
Normal 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
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue