summaryrefslogtreecommitdiff
path: root/frontends/opengl
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2019-04-10 17:16:27 -0400
committerAndrew Opalach <andrew@akon.city> 2019-04-10 17:16:27 -0400
commit64bd072a1ef349fedc1364a221a19ce71c368e72 (patch)
treeeceb68dcf0a54ba3ec676a3f9cc72378b37001d9 /frontends/opengl
parent60699af63f92f43cc4b4b9e3050fcdd2a8468281 (diff)
downloadcetris-64bd072a1ef349fedc1364a221a19ce71c368e72.tar.gz
cetris-64bd072a1ef349fedc1364a221a19ce71c368e72.tar.bz2
cetris-64bd072a1ef349fedc1364a221a19ce71c368e72.zip
add shorthand int types and cleanup
Diffstat (limited to 'frontends/opengl')
-rw-r--r--frontends/opengl/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/frontends/opengl/meson.build b/frontends/opengl/meson.build
index 1821a94..ccf641a 100644
--- a/frontends/opengl/meson.build
+++ b/frontends/opengl/meson.build
@@ -5,6 +5,10 @@ glfw = dependency('glfw3')
math = compiler.find_library('m')
dl = compiler.find_library('dl')
+configure_file(input: 'block.jpg',
+ output: 'block.jpg',
+ copy: true, install: false)
+
executable('cetris_gl', src,
dependencies: [glfw, math, dl, cetris],
include_directories: [cetris_inc, glad_inc],