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/0KSu.txt
Normal file
27
.config/Code/User/History/-61d9cb/0KSu.txt
Normal file
|
@ -0,0 +1,27 @@
|
|||
cmake_minimum_required(VERSION 3.27)
|
||||
|
||||
ssttrackergo-vulkan-fix
|
||||
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)
|
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)
|
14
.config/Code/User/History/-61d9cb/2FyT.txt
Normal file
14
.config/Code/User/History/-61d9cb/2FyT.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
# include_directories(Hyprland/src/)
|
||||
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# If the Hyprland API is a library, link against it
|
||||
target_link_libraries(sttracker hyprland/src/plugins/)
|
||||
target_link_libraries(sttracker Hyprland/subprojects/plugins/)
|
27
.config/Code/User/History/-61d9cb/3XVQ.txt
Normal file
27
.config/Code/User/History/-61d9cb/3XVQ.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)
|
11
.config/Code/User/History/-61d9cb/3YHk.txt
Normal file
11
.config/Code/User/History/-61d9cb/3YHk.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
# include_directories(Hyprland/src/)
|
||||
include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
36
.config/Code/User/History/-61d9cb/7dzh.txt
Normal file
36
.config/Code/User/History/-61d9cb/7dzh.txt
Normal file
|
@ -0,0 +1,36 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
# include_directories(Hyprland/src)
|
||||
# include_directories(Hyprland/subprojects/udis86)
|
||||
# include_directories(Hyprland/subprojects/hyprland-protocols)
|
||||
# include_directories(Hyprland/subprojects/tracy/public/tracy)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland)
|
||||
|
||||
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)
|
29
.config/Code/User/History/-61d9cb/7rcT.txt
Normal file
29
.config/Code/User/History/-61d9cb/7rcT.txt
Normal file
|
@ -0,0 +1,29 @@
|
|||
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
|
||||
wlroots
|
||||
)
|
||||
target_link_libraries(sttracker PRIVATE rt PkgConfig::deps)
|
||||
include_directories(${CMAKE_SOURCE_DIR}/Hyprland/subprojects/wlroots-hyprland/include)
|
||||
|
||||
install(TARGETS sttracker)
|
14
.config/Code/User/History/-61d9cb/8IVb.txt
Normal file
14
.config/Code/User/History/-61d9cb/8IVb.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
# include_directories(Hyprland/src/)
|
||||
include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
include_directories(Hyprland/subprojects/wlroots-hyprland/render)
|
||||
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
13
.config/Code/User/History/-61d9cb/9mBJ.txt
Normal file
13
.config/Code/User/History/-61d9cb/9mBJ.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
# include_directories(Hyprland/src/)
|
||||
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# If the Hyprland API is a library, link against it
|
||||
target_link_libraries(sttracker hyprland/src/plugins/)
|
13
.config/Code/User/History/-61d9cb/9xPC.txt
Normal file
13
.config/Code/User/History/-61d9cb/9xPC.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
include_directories()
|
||||
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# If the Hyprland API is a library, link against it
|
||||
target_link_libraries(sttracker /path/to/hyprland/api/library)
|
29
.config/Code/User/History/-61d9cb/AGoY.txt
Normal file
29
.config/Code/User/History/-61d9cb/AGoY.txt
Normal file
|
@ -0,0 +1,29 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
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)
|
28
.config/Code/User/History/-61d9cb/AhNW.txt
Normal file
28
.config/Code/User/History/-61d9cb/AhNW.txt
Normal file
|
@ -0,0 +1,28 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
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)
|
32
.config/Code/User/History/-61d9cb/B0Gg.txt
Normal file
32
.config/Code/User/History/-61d9cb/B0Gg.txt
Normal file
|
@ -0,0 +1,32 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
include_directories(${CMAKE_SOURCE_DIR}/src)
|
||||
|
||||
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)
|
28
.config/Code/User/History/-61d9cb/B5aO.txt
Normal file
28
.config/Code/User/History/-61d9cb/B5aO.txt
Normal file
|
@ -0,0 +1,28 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
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)
|
34
.config/Code/User/History/-61d9cb/CsCO.txt
Normal file
34
.config/Code/User/History/-61d9cb/CsCO.txt
Normal file
|
@ -0,0 +1,34 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
include_directories(Hyprland/src)
|
||||
include_directories(Hyprland/subprojects/udis86)
|
||||
include_directories(Hyprland/subprojects/tracy)
|
||||
|
||||
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)
|
41
.config/Code/User/History/-61d9cb/Gd0Z.txt
Normal file
41
.config/Code/User/History/-61d9cb/Gd0Z.txt
Normal file
|
@ -0,0 +1,41 @@
|
|||
# cmake_minimum_required(VERSION 3.10)
|
||||
# project(sttracker)
|
||||
|
||||
# set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# # Specify the path to the Hyprland API headers
|
||||
# # include_directories(Hyprland/src/)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/render)
|
||||
|
||||
# # Add the source file
|
||||
# add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# add_definitions(-DWLR_USE_UNSTABLE)
|
||||
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)
|
27
.config/Code/User/History/-61d9cb/HVF2.txt
Normal file
27
.config/Code/User/History/-61d9cb/HVF2.txt
Normal file
|
@ -0,0 +1,27 @@
|
|||
cmake_minimum_required(VERSION 3.27)
|
||||
|
||||
project(csgo-vulkan-fix
|
||||
DESCRIPTION "csgo-vulkan-fix plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
file(GLOB_RECURSE SRC "*.cpp")
|
||||
|
||||
add_library(csgo-vulkan-fix 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(csgo-vulkan-fix PRIVATE rt PkgConfig::deps)
|
||||
|
||||
install(TARGETS csgo-vulkan-fix)
|
31
.config/Code/User/History/-61d9cb/Or2T.txt
Normal file
31
.config/Code/User/History/-61d9cb/Or2T.txt
Normal file
|
@ -0,0 +1,31 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
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)
|
29
.config/Code/User/History/-61d9cb/QAZG.txt
Normal file
29
.config/Code/User/History/-61d9cb/QAZG.txt
Normal file
|
@ -0,0 +1,29 @@
|
|||
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
|
||||
wlroots
|
||||
)
|
||||
target_link_libraries(sttracker PRIVATE rt PkgConfig::deps)
|
||||
include_directories(${CMAKE_SOURCE_DIR}/Hyprland/subprojects/wlroots-hyprland/include)
|
||||
|
||||
install(TARGETS sttracker)
|
42
.config/Code/User/History/-61d9cb/S2m7.txt
Normal file
42
.config/Code/User/History/-61d9cb/S2m7.txt
Normal file
|
@ -0,0 +1,42 @@
|
|||
# cmake_minimum_required(VERSION 3.10)
|
||||
# project(sttracker)
|
||||
|
||||
# set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# # Specify the path to the Hyprland API headers
|
||||
# # include_directories(Hyprland/src/)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/render)
|
||||
|
||||
# # Add the source file
|
||||
# add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# add_definitions(-DWLR_USE_UNSTABLE)
|
||||
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)
|
||||
include_directories(Hyprland/subprojects/wlroots-hyprland/include)
|
||||
|
||||
install(TARGETS sttracker)
|
36
.config/Code/User/History/-61d9cb/SYV6.txt
Normal file
36
.config/Code/User/History/-61d9cb/SYV6.txt
Normal file
|
@ -0,0 +1,36 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
include_directories(Hyprland/src)
|
||||
include_directories(Hyprland/subprojects/udis86)
|
||||
include_directories(Hyprland/subprojects/hyprland-protocols)
|
||||
include_directories(Hyprland/subprojects/tracy/public/tracy)
|
||||
include_directories(Hyprland/subprojects/wlroots-hyprland)
|
||||
|
||||
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)
|
28
.config/Code/User/History/-61d9cb/TC7M.txt
Normal file
28
.config/Code/User/History/-61d9cb/TC7M.txt
Normal file
|
@ -0,0 +1,28 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
CXXFLAGS="-DWLR_USE_UNSTABLE" make
|
||||
|
||||
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)
|
13
.config/Code/User/History/-61d9cb/TG1P.txt
Normal file
13
.config/Code/User/History/-61d9cb/TG1P.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
# include_directories(Hyprland/src/)
|
||||
include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
14
.config/Code/User/History/-61d9cb/Wkz8.txt
Normal file
14
.config/Code/User/History/-61d9cb/Wkz8.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
# include_directories(Hyprland/src/)
|
||||
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# If the Hyprland API is a library, link against it
|
||||
# target_link_libraries(sttracker hyprland/src/plugins/)
|
||||
target_link_libraries(sttracker Hyprland/subprojects/wlroots-hyprland/include/render)
|
33
.config/Code/User/History/-61d9cb/Yuve.txt
Normal file
33
.config/Code/User/History/-61d9cb/Yuve.txt
Normal file
|
@ -0,0 +1,33 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
include_directories(Hyprland/src)
|
||||
include_directories(Hyprland/subprojects/udis86)
|
||||
|
||||
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)
|
42
.config/Code/User/History/-61d9cb/cpnH.txt
Normal file
42
.config/Code/User/History/-61d9cb/cpnH.txt
Normal file
|
@ -0,0 +1,42 @@
|
|||
# cmake_minimum_required(VERSION 3.10)
|
||||
# project(sttracker)
|
||||
|
||||
# set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# # Specify the path to the Hyprland API headers
|
||||
# # include_directories(Hyprland/src/)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/render)
|
||||
|
||||
# # Add the source file
|
||||
# add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# add_definitions(-DWLR_USE_UNSTABLE)
|
||||
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)
|
||||
include_directories(${CMAKE_SOURCE_DIR}/Hyprland/subprojects/wlroots-hyprland/include)
|
||||
|
||||
install(TARGETS sttracker)
|
36
.config/Code/User/History/-61d9cb/eI4M.txt
Normal file
36
.config/Code/User/History/-61d9cb/eI4M.txt
Normal file
|
@ -0,0 +1,36 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
# include_directories(Hyprland/src)
|
||||
# include_directories(Hyprland/subprojects/udis86)
|
||||
# include_directories(Hyprland/subprojects/hyprland-protocols)
|
||||
# include_directories(Hyprland/subprojects/tracy/public/tracy)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland)
|
||||
|
||||
# file(GLOB_RECURSE SRC "main.cpp")
|
||||
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
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)
|
14
.config/Code/User/History/-61d9cb/egMf.txt
Normal file
14
.config/Code/User/History/-61d9cb/egMf.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
# include_directories(Hyprland/src/)
|
||||
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# If the Hyprland API is a library, link against it
|
||||
target_link_libraries(sttracker hyprland/src/plugins/)
|
||||
target_link_libraries(sttracker Hyprland/subprojects/wlroots-hyprland/include/render)
|
1
.config/Code/User/History/-61d9cb/entries.json
Normal file
1
.config/Code/User/History/-61d9cb/entries.json
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":1,"resource":"file:///home/rafayahmad/Stuff/Coding/C%2B%2B/sttracker/CMakeLists.txt","entries":[{"id":"hlz1.txt","timestamp":1715873701788},{"id":"9xPC.txt","timestamp":1715873763461},{"id":"xNbS.txt","timestamp":1715873823625},{"id":"h7p4.txt","timestamp":1715873846708},{"id":"9mBJ.txt","timestamp":1715874008564},{"id":"2FyT.txt","timestamp":1715874069901},{"id":"egMf.txt","timestamp":1715874091658},{"id":"Wkz8.txt","timestamp":1715874107391},{"id":"naYq.txt","timestamp":1715874189404},{"id":"3YHk.txt","timestamp":1715874233164},{"id":"TG1P.txt","source":"Workspace Edit","timestamp":1715874239131},{"id":"8IVb.txt","timestamp":1715874311061},{"id":"wzVJ.txt","timestamp":1716096897490},{"id":"mPdd.txt","timestamp":1716096909183},{"id":"Gd0Z.txt","timestamp":1716096965989},{"id":"uGes.txt","timestamp":1716097338558},{"id":"S2m7.txt","timestamp":1716097428620},{"id":"cpnH.txt","timestamp":1716097481254},{"id":"xp1R.txt","timestamp":1716097504620},{"id":"7rcT.txt","timestamp":1716432664794},{"id":"QAZG.txt","timestamp":1716432849991},{"id":"n8Pq.txt","timestamp":1716432898562},{"id":"HVF2.txt","timestamp":1716435294579},{"id":"0KSu.txt","timestamp":1716435347540},{"id":"3XVQ.txt","timestamp":1716435363570},{"id":"tXo9.txt","timestamp":1716435490485},{"id":"TC7M.txt","timestamp":1716435771553},{"id":"B5aO.txt","timestamp":1716435792960},{"id":"AGoY.txt","timestamp":1716559360135},{"id":"Or2T.txt","timestamp":1716561263128},{"id":"maDh.txt","timestamp":1716561281758},{"id":"B0Gg.txt","timestamp":1716561882783},{"id":"sFES.txt","timestamp":1716561907893},{"id":"Yuve.txt","timestamp":1716562446060},{"id":"CsCO.txt","timestamp":1716563361476},{"id":"jDV9.txt","timestamp":1716563404031},{"id":"SYV6.txt","timestamp":1716563919631},{"id":"7dzh.txt","timestamp":1716564140578},{"id":"qAkT.txt","timestamp":1716564158821},{"id":"eI4M.txt","timestamp":1716564284054},{"id":"AhNW.txt","timestamp":1716564326240},{"id":"0QrW.txt","timestamp":1716620556756},{"id":"iwyd.txt","timestamp":1716620570866},{"id":"ry42.txt","timestamp":1716620678866}]}
|
13
.config/Code/User/History/-61d9cb/h7p4.txt
Normal file
13
.config/Code/User/History/-61d9cb/h7p4.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
include_directories(Hyprland/src/)
|
||||
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# If the Hyprland API is a library, link against it
|
||||
target_link_libraries(sttracker hyprland/src/plugins/)
|
13
.config/Code/User/History/-61d9cb/hlz1.txt
Normal file
13
.config/Code/User/History/-61d9cb/hlz1.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(MyPlugin)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
include_directories(/path/to/hyprland/api/headers)
|
||||
|
||||
# Add the source file
|
||||
add_library(MyPlugin SHARED main.cpp)
|
||||
|
||||
# If the Hyprland API is a library, link against it
|
||||
target_link_libraries(MyPlugin /path/to/hyprland/api/library)
|
27
.config/Code/User/History/-61d9cb/iwyd.txt
Normal file
27
.config/Code/User/History/-61d9cb/iwyd.txt
Normal file
|
@ -0,0 +1,27 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
|
||||
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)
|
36
.config/Code/User/History/-61d9cb/jDV9.txt
Normal file
36
.config/Code/User/History/-61d9cb/jDV9.txt
Normal file
|
@ -0,0 +1,36 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
include_directories(Hyprland/src)
|
||||
include_directories(Hyprland/subprojects/udis86)
|
||||
include_directories(Hyprland/subprojects/hyprland-protocols)
|
||||
include_directories(Hyprland/subprojects/tracy)
|
||||
include_directories(Hyprland/subprojects/wlroots-hyprland)
|
||||
|
||||
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)
|
41
.config/Code/User/History/-61d9cb/mPdd.txt
Normal file
41
.config/Code/User/History/-61d9cb/mPdd.txt
Normal file
|
@ -0,0 +1,41 @@
|
|||
# cmake_minimum_required(VERSION 3.10)
|
||||
# project(sttracker)
|
||||
|
||||
# set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# # Specify the path to the Hyprland API headers
|
||||
# # include_directories(Hyprland/src/)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/render)
|
||||
|
||||
# # Add the source file
|
||||
# add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# add_definitions(-DWLR_USE_UNSTABLE)
|
||||
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)
|
30
.config/Code/User/History/-61d9cb/maDh.txt
Normal file
30
.config/Code/User/History/-61d9cb/maDh.txt
Normal file
|
@ -0,0 +1,30 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
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)
|
0
.config/Code/User/History/-61d9cb/n8Pq.txt
Normal file
0
.config/Code/User/History/-61d9cb/n8Pq.txt
Normal file
14
.config/Code/User/History/-61d9cb/naYq.txt
Normal file
14
.config/Code/User/History/-61d9cb/naYq.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
# include_directories(Hyprland/src/)
|
||||
include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# If the Hyprland API is a library, link against it
|
||||
# target_link_libraries(sttracker hyprland/src/plugins/)
|
||||
# target_link_libraries(sttracker Hyprland/subprojects/wlroots-hyprland/include/render)
|
36
.config/Code/User/History/-61d9cb/qAkT.txt
Normal file
36
.config/Code/User/History/-61d9cb/qAkT.txt
Normal file
|
@ -0,0 +1,36 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
# include_directories(Hyprland/src)
|
||||
# include_directories(Hyprland/subprojects/udis86)
|
||||
# include_directories(Hyprland/subprojects/hyprland-protocols)
|
||||
# include_directories(Hyprland/subprojects/tracy/public/tracy)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland)
|
||||
|
||||
file(GLOB_RECURSE SRC "main.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)
|
28
.config/Code/User/History/-61d9cb/ry42.txt
Normal file
28
.config/Code/User/History/-61d9cb/ry42.txt
Normal file
|
@ -0,0 +1,28 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
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)
|
32
.config/Code/User/History/-61d9cb/sFES.txt
Normal file
32
.config/Code/User/History/-61d9cb/sFES.txt
Normal file
|
@ -0,0 +1,32 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
add_definitions(-DWLR_USE_UNSTABLE)
|
||||
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
project(sttracker
|
||||
DESCRIPTION "sttracker plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
include_directories(Hyprland/src)
|
||||
|
||||
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)
|
27
.config/Code/User/History/-61d9cb/tXo9.txt
Normal file
27
.config/Code/User/History/-61d9cb/tXo9.txt
Normal file
|
@ -0,0 +1,27 @@
|
|||
cmake_minimum_required(VERSION 3.29)
|
||||
|
||||
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)
|
42
.config/Code/User/History/-61d9cb/uGes.txt
Normal file
42
.config/Code/User/History/-61d9cb/uGes.txt
Normal file
|
@ -0,0 +1,42 @@
|
|||
# cmake_minimum_required(VERSION 3.10)
|
||||
# project(sttracker)
|
||||
|
||||
# set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# # Specify the path to the Hyprland API headers
|
||||
# # include_directories(Hyprland/src/)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/render)
|
||||
|
||||
# # Add the source file
|
||||
# add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# add_definitions(-DWLR_USE_UNSTABLE)
|
||||
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)
|
||||
include_directories(Hyprland/subprojects/wlroots-hyprland/include)
|
||||
|
||||
install(TARGETS sttracker)
|
41
.config/Code/User/History/-61d9cb/wzVJ.txt
Normal file
41
.config/Code/User/History/-61d9cb/wzVJ.txt
Normal file
|
@ -0,0 +1,41 @@
|
|||
# cmake_minimum_required(VERSION 3.10)
|
||||
# project(sttracker)
|
||||
|
||||
# set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# # Specify the path to the Hyprland API headers
|
||||
# # include_directories(Hyprland/src/)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/render)
|
||||
|
||||
# # Add the source file
|
||||
# add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# add_definitions(-DWLR_USE_UNSTABLE)
|
||||
cmake_minimum_required(VERSION 3.27)
|
||||
|
||||
project(hyprbars
|
||||
DESCRIPTION "hyprbars plugin for Hyprland"
|
||||
VERSION 0.1
|
||||
)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
file(GLOB_RECURSE SRC "*.cpp")
|
||||
|
||||
add_library(hyprbars 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(hyprbars PRIVATE rt PkgConfig::deps)
|
||||
|
||||
install(TARGETS hyprbars)
|
13
.config/Code/User/History/-61d9cb/xNbS.txt
Normal file
13
.config/Code/User/History/-61d9cb/xNbS.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(sttracker)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# Specify the path to the Hyprland API headers
|
||||
include_directories(Hyprland/src/)
|
||||
|
||||
# Add the source file
|
||||
add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# If the Hyprland API is a library, link against it
|
||||
target_link_libraries(sttracker /path/to/hyprland/api/library)
|
43
.config/Code/User/History/-61d9cb/xp1R.txt
Normal file
43
.config/Code/User/History/-61d9cb/xp1R.txt
Normal file
|
@ -0,0 +1,43 @@
|
|||
# cmake_minimum_required(VERSION 3.10)
|
||||
# project(sttracker)
|
||||
|
||||
# set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
# # Specify the path to the Hyprland API headers
|
||||
# # include_directories(Hyprland/src/)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/include/render)
|
||||
# include_directories(Hyprland/subprojects/wlroots-hyprland/render)
|
||||
|
||||
# # Add the source file
|
||||
# add_library(sttracker SHARED main.cpp)
|
||||
|
||||
# add_definitions(-DWLR_USE_UNSTABLE)
|
||||
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
|
||||
wlroots
|
||||
)
|
||||
target_link_libraries(sttracker PRIVATE rt PkgConfig::deps)
|
||||
include_directories(${CMAKE_SOURCE_DIR}/Hyprland/subprojects/wlroots-hyprland/include)
|
||||
|
||||
install(TARGETS sttracker)
|
Loading…
Add table
Add a link
Reference in a new issue