You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
core/cupdatecursor/CMakeLists.txt

18 lines
333 B
CMake

find_package(Qt5 COMPONENTS Core Gui X11Extras REQUIRED)
find_package(X11)
add_executable(cupdatecursor
main.cpp
)
target_link_libraries(cupdatecursor
Qt5::Core
Qt5::Gui
Qt5::X11Extras
${X11_LIBRARIES}
X11::X11
X11::Xi
X11::Xcursor
)
install(TARGETS cupdatecursor DESTINATION ${CMAKE_INSTALL_BINDIR})