| 123456789101112131415161718192021222324252627 |
- project(
- 'tcp-ip-sockets-in-c',
- 'c',
- default_options: [
- 'buildtype=debug'
- ],
- )
- c_args = [
- '-std=c23',
- '-Wall',
- '-Wextra',
- '-pedantic'
- ]
- common_src = files(
- 'common/DieWithMessage.c',
- 'common/Practical.c',
- )
- common_include = [
- include_directories('common')
- ]
- subdir('ch2')
- subdir('ch3')
- subdir('ch4')
|