diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pugl_cairo_demo.app/MacOS/meson.build | 2 | ||||
-rw-r--r-- | examples/pugl_clipboard_demo.app/MacOS/meson.build | 2 | ||||
-rw-r--r-- | examples/pugl_cpp_demo.app/MacOS/meson.build | 2 | ||||
-rw-r--r-- | examples/pugl_cursor_demo.app/MacOS/meson.build | 2 | ||||
-rw-r--r-- | examples/pugl_embed_demo.app/MacOS/meson.build | 2 | ||||
-rw-r--r-- | examples/pugl_shader_demo.app/MacOS/meson.build | 2 | ||||
-rw-r--r-- | examples/pugl_vulkan_cpp_demo.app/MacOS/meson.build | 2 | ||||
-rw-r--r-- | examples/pugl_vulkan_demo.app/MacOS/meson.build | 2 | ||||
-rw-r--r-- | examples/pugl_window_demo.app/MacOS/meson.build | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/examples/pugl_cairo_demo.app/MacOS/meson.build b/examples/pugl_cairo_demo.app/MacOS/meson.build index 8bfee99..1b9740c 100644 --- a/examples/pugl_cairo_demo.app/MacOS/meson.build +++ b/examples/pugl_cairo_demo.app/MacOS/meson.build @@ -1,7 +1,7 @@ executable( 'pugl_cairo_demo', ['../../pugl_cairo_demo.c'], - include_directories: include_directories('../../../../include', '../../..'), + include_directories: include_directories('../../..'), c_args: example_defines + example_c_args + cairo_args, cpp_args: example_defines + example_cpp_args, dependencies: [pugl_dep, cairo_backend_dep]) diff --git a/examples/pugl_clipboard_demo.app/MacOS/meson.build b/examples/pugl_clipboard_demo.app/MacOS/meson.build index 1fcb023..2f2ebb9 100644 --- a/examples/pugl_clipboard_demo.app/MacOS/meson.build +++ b/examples/pugl_clipboard_demo.app/MacOS/meson.build @@ -4,6 +4,6 @@ executable( 'pugl_clipboard_demo', '../../pugl_clipboard_demo.c', - include_directories: include_directories('../../../../include', '../../..'), + include_directories: include_directories('../../..'), c_args: example_defines + example_c_args, dependencies: [pugl_dep, gl_backend_dep]) diff --git a/examples/pugl_cpp_demo.app/MacOS/meson.build b/examples/pugl_cpp_demo.app/MacOS/meson.build index 5317789..c32600d 100644 --- a/examples/pugl_cpp_demo.app/MacOS/meson.build +++ b/examples/pugl_cpp_demo.app/MacOS/meson.build @@ -1,7 +1,7 @@ executable( 'pugl_cpp_demo', '../../pugl_cpp_demo.cpp', - include_directories: include_directories('../../../../include', '../../..'), + include_directories: include_directories('../../..'), c_args: example_defines + example_c_args, cpp_args: example_defines + example_cpp_args, dependencies: [puglpp_dep, gl_backend_dep]) diff --git a/examples/pugl_cursor_demo.app/MacOS/meson.build b/examples/pugl_cursor_demo.app/MacOS/meson.build index d702c49..f812489 100644 --- a/examples/pugl_cursor_demo.app/MacOS/meson.build +++ b/examples/pugl_cursor_demo.app/MacOS/meson.build @@ -1,7 +1,7 @@ executable( 'pugl_cursor_demo', '../../pugl_cursor_demo.c', - include_directories: include_directories('../../../../include', '../../..'), + include_directories: include_directories('../../..'), c_args: example_defines + example_c_args, cpp_args: example_defines + example_cpp_args, dependencies: [pugl_dep, gl_backend_dep]) diff --git a/examples/pugl_embed_demo.app/MacOS/meson.build b/examples/pugl_embed_demo.app/MacOS/meson.build index 4ad3781..75634ce 100644 --- a/examples/pugl_embed_demo.app/MacOS/meson.build +++ b/examples/pugl_embed_demo.app/MacOS/meson.build @@ -1,7 +1,7 @@ executable( 'pugl_embed_demo', '../../pugl_embed_demo.c', - include_directories: include_directories('../../../../include', '../../..'), + include_directories: include_directories('../../..'), c_args: example_defines + example_c_args, cpp_args: example_defines + example_cpp_args, dependencies: [pugl_dep, gl_backend_dep]) diff --git a/examples/pugl_shader_demo.app/MacOS/meson.build b/examples/pugl_shader_demo.app/MacOS/meson.build index 3eb9ae1..998f2df 100644 --- a/examples/pugl_shader_demo.app/MacOS/meson.build +++ b/examples/pugl_shader_demo.app/MacOS/meson.build @@ -5,7 +5,7 @@ executable( '../../glad/glad.c', '../../pugl_shader_demo.c', ], - include_directories: include_directories('../../../../include', '../../..'), + include_directories: include_directories('../../..'), c_args: example_defines + example_c_args, cpp_args: example_defines + example_cpp_args, dependencies: [pugl_dep, gl_backend_dep, dl_dep]) diff --git a/examples/pugl_vulkan_cpp_demo.app/MacOS/meson.build b/examples/pugl_vulkan_cpp_demo.app/MacOS/meson.build index 2ff4e87..b0f9ca0 100644 --- a/examples/pugl_vulkan_cpp_demo.app/MacOS/meson.build +++ b/examples/pugl_vulkan_cpp_demo.app/MacOS/meson.build @@ -4,7 +4,7 @@ executable( '../../pugl_vulkan_cpp_demo.cpp', '../../file_utils.c', ], - include_directories: include_directories('../../../../include', '../../..'), + include_directories: include_directories('../../..'), c_args: example_defines + example_c_args, cpp_args: example_defines + example_cpp_args, dependencies: [puglpp_dep, vulkan_backend_dep]) diff --git a/examples/pugl_vulkan_demo.app/MacOS/meson.build b/examples/pugl_vulkan_demo.app/MacOS/meson.build index d2863b3..61f3152 100644 --- a/examples/pugl_vulkan_demo.app/MacOS/meson.build +++ b/examples/pugl_vulkan_demo.app/MacOS/meson.build @@ -4,6 +4,6 @@ executable( '../../pugl_vulkan_demo.c', '../../file_utils.c', ], - include_directories: include_directories('../../../../include', '../../..'), + include_directories: include_directories('../../..'), c_args: example_defines + example_c_args, dependencies: [pugl_dep, vulkan_backend_dep]) diff --git a/examples/pugl_window_demo.app/MacOS/meson.build b/examples/pugl_window_demo.app/MacOS/meson.build index 84b4c59..5a9ff6a 100644 --- a/examples/pugl_window_demo.app/MacOS/meson.build +++ b/examples/pugl_window_demo.app/MacOS/meson.build @@ -1,7 +1,7 @@ executable( 'pugl_window_demo', '../../pugl_window_demo.c', - include_directories: include_directories('../../../../include', '../../..'), + include_directories: include_directories('../../..'), c_args: example_defines + example_c_args, cpp_args: example_defines + example_cpp_args, dependencies: [pugl_dep, gl_backend_dep]) |