diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2015-11-26 12:41:24 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2015-11-26 12:41:24 -0500 |
| commit | cde002ed1c7db25b79664c4ab751df164d5c52d1 (patch) | |
| tree | cdb01ed4a7a89c25b7018d8cb939369b74d3ceeb /swaymsg/CMakeLists.txt | |
| parent | 71faafca202aab10978b4b394789f49342691452 (diff) | |
Add swaymsg subproject
Diffstat (limited to 'swaymsg/CMakeLists.txt')
| -rw-r--r-- | swaymsg/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/swaymsg/CMakeLists.txt b/swaymsg/CMakeLists.txt new file mode 100644 index 00000000..79af0f3e --- /dev/null +++ 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) |
