mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
18 lines
248 B
Text
18 lines
248 B
Text
|
|
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
|
||
|
|
)
|