🚧 Basic tiling window creation
Only supports creation of windows with horizontal splitting, and not removal of windows.
This commit is contained in:
parent
0923b1bf79
commit
ac58e5e6db
8 changed files with 145 additions and 33 deletions
|
|
@ -1,7 +1,9 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
cmake_minimum_required(VERSION 3.21)
|
||||
|
||||
project(aswm)
|
||||
|
||||
set(CMAKE_C_STANDARD 23)
|
||||
|
||||
find_package(X11 REQUIRED)
|
||||
|
||||
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -fsanitize=address")
|
||||
|
|
@ -9,6 +11,7 @@ set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -fsanitize=address")
|
|||
add_executable(aswm
|
||||
src/aswm/main.c
|
||||
src/aswm/aswm.c
|
||||
src/aswm/mapper/mapper.c
|
||||
src/aswm/event_handlers/create.c
|
||||
src/aswm/event_handlers/configure.c
|
||||
src/aswm/event_handlers/reparent.c
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue