add vector_remove_at

This commit is contained in:
chatlanin
2022-03-21 10:42:52 +03:00
parent 6b124255a0
commit f32a1e49a6
10 changed files with 123 additions and 32 deletions

14
src/concepts/meson.build Normal file
View File

@@ -0,0 +1,14 @@
headers = ['concepts.hpp']
sources = []
lib = library(
'concepts',
include_directories : inc,
install : true,
sources: [headers, sources]
)
concepts_dep = declare_dependency(
include_directories: inc,
link_with: lib
)