Newer
Older
project(
'gp', # project name
'cpp', # C++ project
default_options : ['cpp_std=c++11']) # compile for C++
# it will be referred from subdir projects
inc = include_directories('include')
executable('gp-bnb',
'bnb/main.cpp',
'bnb/graph.cpp',
'bnb/partition.cpp',
'bnb/greedy_packing.cpp',
include_directories: inc)
# meson will try to find a meson.build file inside following directories
#subdir('include')
#subdir('bnb')
subdir('test')