Begin meson conversion.. Not yet building anything

Signed-off-by: Ikey Doherty <ikey@solus-project.com>
This commit is contained in:
Ikey Doherty
2017-10-10 19:46:00 +01:00
parent a3226a293c
commit 3b552ec17d
4 changed files with 41 additions and 0 deletions
+3
View File
@@ -17,3 +17,6 @@ m4/*.m4
/steam
/lsi-steam
/lsi-settings
/build/
+36
View File
@@ -0,0 +1,36 @@
project(
'linux-steam-integration',
['c'],
version: '0.3',
license: [
'LGPL-2.1',
],
default_options: [
'c_std=c99',
],
)
am_cflags = [
'-fstack-protector',
'-pedantic',
'-Wstrict-prototypes',
'-Wundef',
'-fno-common',
'-Werror-implicit-function-declaration',
'-Wformat',
'-Wformat-security',
'-Werror=format-security',
'-Wno-conversion',
'-Wunused-variable',
'-Wunreachable-code',
'-Wall',
'-W',
'-D_FORTIFY_SOURCE=2',
]
add_global_arguments(am_cflags, language: 'c')
dep_gtk3 = dependency('gtk+-3.0', version: '>= 3.4.0')
subdir('src')
+1
View File
@@ -0,0 +1 @@
# We do nothing yet..
+1
View File
@@ -0,0 +1 @@
subdir('intercept')