Create and set up window

This commit is contained in:
2024-11-03 19:41:56 +00:00
parent 26aeb19217
commit 560d9f48b6
2 changed files with 49 additions and 0 deletions

View File

@@ -14,3 +14,6 @@ if(${SANITIZERS})
target_compile_options(maze-thing PRIVATE -fsanitize=address,undefined)
target_link_options(maze-thing PRIVATE -fsanitize=address,undefined)
endif()
find_package(X11 REQUIRED)
target_link_libraries(maze-thing PRIVATE X11::X11)