remve index

This commit is contained in:
chatlanin 2022-03-24 16:36:20 +03:00
parent 4f3a63c5f2
commit ff0c8c3fcb
4 changed files with 0 additions and 22 deletions

View File

@ -6,7 +6,6 @@ deps += string_dep
deps += range_dep deps += range_dep
deps += container_dep deps += container_dep
deps += logger_dep deps += logger_dep
deps += hack_dep
executable( executable(
'hack', 'main.cpp', 'hack', 'main.cpp',

View File

@ -1,6 +0,0 @@
#include "string/string.hpp"
#include "range/range.hpp"
#include "container/container.hpp"
#include "logger/logger.hpp"
#include "math/matrix.hpp"
#include "math/vector.hpp"

View File

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

View File

@ -29,6 +29,5 @@ inc = []
inc += include_directories('.') inc += include_directories('.')
subdir('src') subdir('src')
subdir('index')
subdir('bin') subdir('bin')
subdir('tests') subdir('tests')