first commit

This commit is contained in:
Vyn 2024-06-02 20:03:02 +02:00
commit 0d840f0d50
9 changed files with 519 additions and 0 deletions

16
CMakeLists.txt Normal file
View file

@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.29.3)
project(
SwayWallpaper
VERSION 1.0
LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_COMPILE_WARNING_AS_ERROR ON)
add_executable(sway-wallpaper
src/main.cpp
src/Wallpapers.cpp
src/SwaybgProcess.cpp
)