aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-07-11 01:20:39 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-07-11 01:49:12 +0200
commite79e955d93e24a192c9bf94181294d0797e9fded (patch)
tree5c3697710b6aa004bb7e3747f4c8ba98b37d662d /CMakeLists.txt
parent4236c7fc3a7c7ef9f79b045cfd99c6575b16f7b1 (diff)
downloadslcl-e79e955d93e24a192c9bf94181294d0797e9fded.tar.gz
Allow admins to define their own stylesheet
slcl used to provide a hardcoded stylesheet. However, it would be desirable for some admins to provide a custom stylesheet without having to rebuild the application. Now, slcl creates a default stylesheet, namely style.css, into the target directory, that can be later modified by admins. While this might contradict the suckless philosophy a bit, hopefully some admins might find this new feature useful.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1b4a381..7f0bbaf 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -12,6 +12,7 @@ add_executable(${PROJECT_NAME}
main.c
page.c
server.c
+ style.c
wildcard_cmp.c
)
target_compile_options(${PROJECT_NAME} PRIVATE -Wall)