🎉 Let's go
A minimalistic but working X XM POC.
This commit is contained in:
commit
cb31369947
14 changed files with 227 additions and 0 deletions
15
CMakeLists.txt
Normal file
15
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
|
||||
project(aswm)
|
||||
|
||||
find_package(X11 REQUIRED)
|
||||
|
||||
add_executable(aswm
|
||||
src/main.c
|
||||
src/create.c
|
||||
src/configure.c
|
||||
src/reparent.c
|
||||
src/destroy.c
|
||||
src/map.c)
|
||||
target_include_directories(aswm PUBLIC ${X11_INCLUDE_DIR} include)
|
||||
target_link_libraries(aswm ${X11_LIBRARIES})
|
||||
Loading…
Add table
Add a link
Reference in a new issue