commit d69cbeabc0d0f59847e0118f61ad7e4d76fc95e4
parent 206606b32cd6bd9c6d6d83ff02d49b1d3c7e0b18
Author: Drew DeVault <sir@cmpwn.com>
Date: Thu, 26 Nov 2015 12:41:24 -0500
Add swaymsg subproject
Diffstat:
3 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -33,7 +33,9 @@ string(TIMESTAMP CURRENT_DATE "%Y-%m-%d" UTC)
add_definitions('-DSWAY_VERSION_DATE="${CURRENT_DATE}"')
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/include")
+
add_subdirectory(swaybg)
+add_subdirectory(swaymsg)
find_package(XKBCommon REQUIRED)
find_package(WLC REQUIRED)
diff --git a/swaymsg/CMakeLists.txt b/swaymsg/CMakeLists.txt
@@ -0,0 +1,16 @@
+project(swaymsg)
+
+set(CMAKE_CURRENT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../bin/)
+
+FILE(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
+FILE(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
+
+add_executable(swaymsg
+ ${sources}
+ ${common}
+)
+
+install(
+ TARGETS swaymsg
+ RUNTIME DESTINATION bin
+ COMPONENT runtime)
diff --git a/swaymsg/main.c b/swaymsg/main.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+void sway_terminate(void) {
+ exit(1);
+}
+
+int main(int argc, const char **argv) {
+ printf("Hello world!");
+ return 0;
+}