summaryrefslogtreecommitdiff
path: root/src/effect
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-02-11 19:46:23 -0600
committersanine <sanine.not@pm.me>2023-02-11 19:46:23 -0600
commit6722ef01e34f75bde72ba29e3279c0d1df030593 (patch)
tree1cb389a5af3c0aa4709def8a76c0628342c8aa7c /src/effect
parent3b740d521a685fdc4f85d100447ff6d88c0b1d28 (diff)
add materials and images processingyacc-xml
Diffstat (limited to 'src/effect')
-rw-r--r--src/effect/CMakeLists.txt3
-rw-r--r--src/effect/effect.h9
2 files changed, 12 insertions, 0 deletions
diff --git a/src/effect/CMakeLists.txt b/src/effect/CMakeLists.txt
new file mode 100644
index 0000000..4b737fd
--- /dev/null
+++ b/src/effect/CMakeLists.txt
@@ -0,0 +1,3 @@
+project(kalmia)
+
+target_sources(kalmia PUBLIC effect.c)
diff --git a/src/effect/effect.h b/src/effect/effect.h
new file mode 100644
index 0000000..91ed454
--- /dev/null
+++ b/src/effect/effect.h
@@ -0,0 +1,9 @@
+#ifndef KALMIA_EFFECT_H
+#define KALMIA_EFFECT_H
+
+#include <kalmia.h>
+#include "xml/xml.h"
+
+
+
+#endif