first commit
This commit is contained in:
commit
0d840f0d50
9 changed files with 519 additions and 0 deletions
16
CMakeLists.txt
Normal file
16
CMakeLists.txt
Normal 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
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue