test
This commit is contained in:
parent
37776af5db
commit
ab03d5f10c
4045 changed files with 286212 additions and 3 deletions
27
.config/Code/User/History/-61d9cb/0QrW.txt
Normal file
27
.config/Code/User/History/-61d9cb/0QrW.txt
Normal file
|
@ -0,0 +1,27 @@
|
|||
cmake_minimum_required(VERSION 3.27)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
file(GLOB_RECURSE SRC "*.cpp")
|
||||
|
||||
add_library(sttracker SHARED ${SRC})
|
||||
|
||||
find_package(PkgConfig REQUIRED)
|
||||
pkg_check_modules(deps REQUIRED IMPORTED_TARGET
|
||||
hyprland
|
||||
libdrm
|
||||
libinput
|
||||
libudev
|
||||
pangocairo
|
||||
pixman-1
|
||||
wayland-server
|
||||
xkbcommon
|
||||
)
|
||||
target_link_libraries(sttracker PRIVATE rt PkgConfig::deps)
|
||||
|
||||
install(TARGETS sttracker)
|
Loading…
Add table
Add a link
Reference in a new issue