summaryrefslogtreecommitdiffstats
path: root/dev/rays/config.h.in
diff options
context:
space:
mode:
authorunknown <paulx161@umn.edu>2021-02-04 18:37:17 -0600
committerunknown <paulx161@umn.edu>2021-02-04 18:37:17 -0600
commitfee4cbf40b07e17eca676b4687c51313f7cfdd2e (patch)
treec3e668b7e76a7f293806f897ae88b4a2dcb254b8 /dev/rays/config.h.in
parentadded dev/MinGfx/ (diff)
downloadcsci4611-fee4cbf40b07e17eca676b4687c51313f7cfdd2e.tar
csci4611-fee4cbf40b07e17eca676b4687c51313f7cfdd2e.tar.gz
csci4611-fee4cbf40b07e17eca676b4687c51313f7cfdd2e.tar.bz2
csci4611-fee4cbf40b07e17eca676b4687c51313f7cfdd2e.tar.lz
csci4611-fee4cbf40b07e17eca676b4687c51313f7cfdd2e.tar.xz
csci4611-fee4cbf40b07e17eca676b4687c51313f7cfdd2e.tar.zst
csci4611-fee4cbf40b07e17eca676b4687c51313f7cfdd2e.zip
Added example projects from lecture
Diffstat (limited to 'dev/rays/config.h.in')
-rw-r--r--dev/rays/config.h.in13
1 files changed, 13 insertions, 0 deletions
diff --git a/dev/rays/config.h.in b/dev/rays/config.h.in
new file mode 100644
index 0000000..16d824b
--- /dev/null
+++ b/dev/rays/config.h.in
@@ -0,0 +1,13 @@
+/** CSci-4611 In-Class Example
+*/
+
+
+// The file config.h.in is processed by cmake to produce config.h. This
+// replaces strings of the form "at"CMAKE_VARIABLE_NAME"at" with the value
+// of the corresponding cmake variable, allowing us to pass directory paths
+// and other information configured with cmake into our C++ code.
+
+
+#define DATA_DIR_BUILD "@DATA_DIR_BUILD@"
+#define DATA_DIR_INSTALL "@DATA_DIR_INSTALL@"
+