diff options
author | unknown <paulx161@umn.edu> | 2021-02-04 18:37:17 -0600 |
---|---|---|
committer | unknown <paulx161@umn.edu> | 2021-02-04 18:37:17 -0600 |
commit | fee4cbf40b07e17eca676b4687c51313f7cfdd2e (patch) | |
tree | c3e668b7e76a7f293806f897ae88b4a2dcb254b8 /dev/rays/config.h.in | |
parent | added dev/MinGfx/ (diff) | |
download | csci4611-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.in | 13 |
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@" + |