aboutsummaryrefslogtreecommitdiffstats
path: root/swaygrab
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-11-27 09:53:50 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-11-27 09:53:50 -0500
commit7c04cd4fc849f01aaf3c5e8b09bee0a8af39276e (patch)
tree77f14711471cd0688ff75725ef3e76d3bd04e441 /swaygrab
parentMove IPC client into common, refactor IPC (diff)
downloadsway-7c04cd4fc849f01aaf3c5e8b09bee0a8af39276e.tar.gz
sway-7c04cd4fc849f01aaf3c5e8b09bee0a8af39276e.tar.zst
sway-7c04cd4fc849f01aaf3c5e8b09bee0a8af39276e.zip
Add swaygrab subproject
Diffstat (limited to 'swaygrab')
-rw-r--r--swaygrab/CMakeLists.txt16
-rw-r--r--swaygrab/main.c12
2 files changed, 28 insertions, 0 deletions
diff --git a/swaygrab/CMakeLists.txt b/swaygrab/CMakeLists.txt
new file mode 100644
index 00000000..5b47a694
--- /dev/null
+++ b/swaygrab/CMakeLists.txt
@@ -0,0 +1,16 @@
1project(swaygrab)
2
3set(CMAKE_CURRENT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../bin/)
4
5FILE(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
6FILE(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
7
8add_executable(swaygrab
9 ${sources}
10 ${common}
11)
12
13install(
14 TARGETS swaygrab
15 RUNTIME DESTINATION bin
16 COMPONENT runtime)
diff --git a/swaygrab/main.c b/swaygrab/main.c
new file mode 100644
index 00000000..4a15bd06
--- /dev/null
+++ b/swaygrab/main.c
@@ -0,0 +1,12 @@
1#include <stdio.h>
2#include <stdlib.h>
3#include "log.h"
4
5void sway_terminate(void) {
6 exit(1);
7}
8
9int main(int argc, const char **argv) {
10 init_log(L_INFO);
11 sway_log(L_INFO, "Hello world!");
12}