You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
340 B
15 lines
340 B
project('cityhash', ['cpp'], license: 'MIT') |
|
|
|
subdir('internal') |
|
sources = ['src/city.cc'] |
|
inc_dir = include_directories('src/') |
|
|
|
cityhash = library('cityhash', 'src/city.cc', |
|
include_directories: [ |
|
inc_dir, |
|
include_directories('internal') |
|
]) |
|
|
|
cityhash = declare_dependency( |
|
link_with: [cityhash], |
|
include_directories: [inc_dir])
|
|
|