first commit
This commit is contained in:
35
.gitignore
vendored
Normal file
35
.gitignore
vendored
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
.mypy_cache/
|
||||||
|
.pytest_cache/
|
||||||
|
/.project
|
||||||
|
/.pydevproject
|
||||||
|
/.settings
|
||||||
|
/.cproject
|
||||||
|
/.idea
|
||||||
|
/.vscode
|
||||||
|
|
||||||
|
__pycache__
|
||||||
|
/.coverage/
|
||||||
|
/.coveragerc
|
||||||
|
/install dir
|
||||||
|
/work area
|
||||||
|
|
||||||
|
/meson-test-run.txt
|
||||||
|
/meson-test-run.xml
|
||||||
|
/meson-cross-test-run.txt
|
||||||
|
/meson-cross-test-run.xml
|
||||||
|
|
||||||
|
.DS_Store
|
||||||
|
*~
|
||||||
|
*.swp
|
||||||
|
packagecache
|
||||||
|
.wraplock
|
||||||
|
/MANIFEST
|
||||||
|
/build
|
||||||
|
/dist
|
||||||
|
/meson.egg-info
|
||||||
|
|
||||||
|
/docs/built_docs
|
||||||
|
/docs/hotdoc-private*
|
||||||
|
|
||||||
|
*.pyc
|
||||||
|
/*venv*
|
||||||
10
meson.build
Normal file
10
meson.build
Normal 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
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user