First commit
This commit is contained in:
25
meson.build
Normal file
25
meson.build
Normal file
@@ -0,0 +1,25 @@
|
||||
project(
|
||||
'tcp-ip-sockets-in-c',
|
||||
'c',
|
||||
default_options: [
|
||||
'buildtype=debug'
|
||||
],
|
||||
)
|
||||
|
||||
c_args = [
|
||||
'-std=c99',
|
||||
'-Wall',
|
||||
'-Wextra',
|
||||
'-pedantic'
|
||||
]
|
||||
|
||||
common_src = files(
|
||||
'common/DieWithMessage.c',
|
||||
'common/Practical.c',
|
||||
)
|
||||
|
||||
common_include = [
|
||||
include_directories('common')
|
||||
]
|
||||
|
||||
subdir('ch1')
|
||||
Reference in New Issue
Block a user