summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfadhil riyanto <me@fadev.org>2024-08-17 08:12:23 +0700
committerfadhil riyanto <me@fadev.org>2024-08-17 08:12:23 +0700
commit3ab4a872a848b17f174829850e0655c79c93fe36 (patch)
treef1917e76f023897a991954e934cd4dfff7f6c5d1
initial
Signed-off-by: fadhil riyanto <me@fadev.org>
-rw-r--r--.gitignore1
-rw-r--r--CMakeLists.txt4
-rw-r--r--init.c4
3 files changed, 9 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..378eac2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+build
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..ba1915f
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,4 @@
+cmake_minimum_required(VERSION 3.10)
+project(xsetroot-daemon)
+
+add_executable(xsetrootd init.c)
diff --git a/init.c b/init.c
new file mode 100644
index 0000000..1dba0b4
--- /dev/null
+++ b/init.c
@@ -0,0 +1,4 @@
+int main(void)
+{
+ return 0;
+} \ No newline at end of file