Very basic native htiles

This commit is contained in:
Paul Breugnot 2024-12-29 13:51:11 +01:00
parent 000b783279
commit 9aab7c087c
10 changed files with 137 additions and 100 deletions

View file

@ -6,7 +6,7 @@ set(CMAKE_C_STANDARD 23)
find_package(X11 REQUIRED)
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -fsanitize=address")
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -fsanitize=address -pg")
add_executable(aswm
src/aswm/aswm.c
@ -16,6 +16,8 @@ add_executable(aswm
src/aswm/event_handlers/reparent.c
src/aswm/event_handlers/destroy.c
src/aswm/event_handlers/map.c
src/aswm/event_handlers/unmap.c)
src/aswm/event_handlers/unmap.c
src/aswm/log/log.c
)
target_include_directories(aswm PUBLIC ${X11_INCLUDE_DIR} src)
target_link_libraries(aswm ${X11_LIBRARIES})