/vgl

Primary LanguageValaGNU Affero General Public License v3.0AGPL-3.0

Vala Graphic Library

how install it ?

meson.build

create your project directory and add the vgl.wrap download

project/
- meson.build
- main.vala
- subprojects
- subprojects/vgl.wrap

init your meson build (meson.build init main.vala -d vgl)

your meson.build should look like this:

project('project-name', ['c', 'vala'])

executable('exe_name',
           'main.vala',
           dependencies: [dependency('vgl')],
           install : true)
meson build
ninja -C build
./build/exe_name