feat: read data from arff files #1

Merged
Trianta merged 8 commits from arff into main 2024-03-18 19:59:45 -05:00
3 changed files with 17 additions and 0 deletions
Showing only changes of commit e0d93f7bcc - Show all commits

12
CMakeLists.txt Normal file
View File

@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.10)
project(
weka
LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use")
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
add_subdirectory(src)

1
src/CMakeLists.txt Normal file
View File

@ -0,0 +1 @@
add_subdirectory(arff)

4
src/arff/CMakeLists.txt Normal file
View File

@ -0,0 +1,4 @@
add_executable(arff
./main.cpp
)