diff options
author | Vaxry <[email protected]> | 2023-10-14 18:48:05 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-14 18:48:05 +0100 |
commit | d4e4931008cc64e5b94a65c5e692ff9ed459280b (patch) | |
tree | 6906a395588dee36ddd86fe6456b2c4475eecd14 /hyprctl | |
parent | d5a572bd39e5b29af8a17af792a43b409ae1cb06 (diff) | |
download | Hyprland-d4e4931008cc64e5b94a65c5e692ff9ed459280b.tar.gz Hyprland-d4e4931008cc64e5b94a65c5e692ff9ed459280b.zip |
build: CMake pipeline improvements (#3564)
Diffstat (limited to 'hyprctl')
-rw-r--r-- | hyprctl/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hyprctl/CMakeLists.txt b/hyprctl/CMakeLists.txt new file mode 100644 index 00000000..99964b50 --- /dev/null +++ b/hyprctl/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.19) + +project( + hyprctl + DESCRIPTION "Control utility for Hyprland" +) + +add_executable(hyprctl "main.cpp")
\ No newline at end of file |