Initial window setup

This commit is contained in:
2026-01-11 16:10:52 +01:00
commit 6b6f8b8b5f
13 changed files with 18959 additions and 0 deletions

16
CMakeLists.txt Normal file
View File

@@ -0,0 +1,16 @@
CMAKE_MINIMUM_REQUIRED(VERSION 3.20)
set( CMAKE_EXPORT_COMPILE_COMMANDS on)
project(Pacman)
add_executable(Pacman src/main.c)
target_link_libraries( Pacman
X11
GL
Xrandr
)
target_include_directories(Pacman
PRIVATE "libs/rgfw/"
)