first commit

This commit is contained in:
John Paul Wohlscheid
2026-02-16 14:53:28 -05:00
commit b6406a205a
3 changed files with 1130 additions and 0 deletions

10
meson.build Normal file
View File

@@ -0,0 +1,10 @@
project('supernotepad', 'c', version: '0.1', default_options: ['warning_level=2'])
gtk = dependency('gtk+-3.0')
gtksource = dependency('gtksourceview-4')
executable('SuperNotepad',
'main.c',
dependencies: [gtk, gtksource],
install: true
)