aboutsummaryrefslogtreecommitdiff
path: root/meson.build
blob: 9f8e63309dc4a766799a7d95ede57fa4ea159fa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
project(
  'pkgit',
  'cpp',
  default_options: ['cpp_std=c++17', 'default_library=static']
)

inc = include_directories('include')

executable(
  'pkgit',
  'src/main.cc',
  include_directories: inc
)