9 lines
277 B
Meson
9 lines
277 B
Meson
project(
|
|
'cs010b-work',
|
|
'cpp',
|
|
version: '0.1',
|
|
default_options: ['warning_level=3', 'cpp_std=c++23'],
|
|
)
|
|
|
|
c_1_lab_1 = executable('c_1_lab_1', 'src/chapter_1/c_1_lab_1.cpp', install: true)
|
|
c_1_ice_1 = executable('c_1_ice_1', 'src/chapter_1/c_1_ice_1.cpp', install: true)
|