mirror of https://github.com/fallahn/tmxlite.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
455 B
Meson
24 lines
455 B
Meson
sdl2_dep = dependency('sdl2')
|
|
sdl2image_dep = dependency('SDL2_image')
|
|
opengl_dep = dependency('opengl')
|
|
glm_dep = dependency('glm')
|
|
glew_dep = dependency('glew')
|
|
|
|
pvt_incdir = include_directories('src')
|
|
|
|
executable('OpenGL_example',
|
|
'src/Game.cpp',
|
|
'src/main.cpp',
|
|
'src/MapLayer.cpp',
|
|
'src/OpenGL.cpp',
|
|
install: false,
|
|
include_directories: pvt_incdir,
|
|
dependencies: [
|
|
tmxlite_dep,
|
|
sdl2_dep,
|
|
sdl2image_dep,
|
|
opengl_dep,
|
|
glew_dep,
|
|
],
|
|
)
|