diff options
author | fadhil riyanto <me@fadev.org> | 2024-08-17 08:12:23 +0700 |
---|---|---|
committer | fadhil riyanto <me@fadev.org> | 2024-08-17 08:12:23 +0700 |
commit | 3ab4a872a848b17f174829850e0655c79c93fe36 (patch) | |
tree | f1917e76f023897a991954e934cd4dfff7f6c5d1 |
initial
Signed-off-by: fadhil riyanto <me@fadev.org>
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | init.c | 4 |
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) @@ -0,0 +1,4 @@ +int main(void) +{ + return 0; +}
\ No newline at end of file |