diff options
| author | Drew DeVault <sir@cmpwn.com> | 2015-11-27 09:53:50 -0500 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2015-11-27 09:53:50 -0500 |
| commit | 7c04cd4fc849f01aaf3c5e8b09bee0a8af39276e (patch) | |
| tree | 77f14711471cd0688ff75725ef3e76d3bd04e441 /swaygrab/CMakeLists.txt | |
| parent | 27f03c705d8851a8ef6ca9e8f7828c1a2bfd9a88 (diff) | |
Add swaygrab subproject
Diffstat (limited to 'swaygrab/CMakeLists.txt')
| -rw-r--r-- | swaygrab/CMakeLists.txt | 16 |
1 files changed, 16 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 @@ +project(swaygrab) + +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(swaygrab + ${sources} + ${common} +) + +install( + TARGETS swaygrab + RUNTIME DESTINATION bin + COMPONENT runtime) |
