diff options
| author | 2019-04-10 17:16:27 -0400 | |
|---|---|---|
| committer | 2019-04-10 17:16:27 -0400 | |
| commit | 64bd072a1ef349fedc1364a221a19ce71c368e72 (patch) | |
| tree | eceb68dcf0a54ba3ec676a3f9cc72378b37001d9 /frontends | |
| parent | 60699af63f92f43cc4b4b9e3050fcdd2a8468281 (diff) | |
| download | cetris-64bd072a1ef349fedc1364a221a19ce71c368e72.tar.gz cetris-64bd072a1ef349fedc1364a221a19ce71c368e72.tar.bz2 cetris-64bd072a1ef349fedc1364a221a19ce71c368e72.zip | |
add shorthand int types and cleanup
Diffstat (limited to 'frontends')
| -rw-r--r-- | frontends/opengl/meson.build | 4 |
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], |