mirror of
https://github.com/swaywm/sway.git
synced 2025-11-19 06:59:52 -05:00
Add swaygrab subproject
This commit is contained in:
parent
27f03c705d
commit
7c04cd4fc8
3 changed files with 29 additions and 0 deletions
16
swaygrab/CMakeLists.txt
Normal file
16
swaygrab/CMakeLists.txt
Normal file
|
|
@ -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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue