Compare commits

..

No commits in common. "e0d93f7bccfc14131aef8a4ef71c364a9c8a9b76" and "917dbec7a150b531dc661371edea0f4d5046fd29" have entirely different histories.

5 changed files with 0 additions and 37 deletions

2
.gitignore vendored
View File

@ -32,5 +32,3 @@
*.out
*.app
# Build directory
build

View File

@ -1,12 +0,0 @@
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)

View File

@ -1,20 +1,2 @@
# weka
## Compiling the project
Prerequisites
- C++11
In order to compile the project, simply run these two commands:
cmake -B build -S .
cmake --build build
## Running the Project
The programs should now be compiled at ./build/bin/
ARFF:
```plain
build/bin/something
```

View File

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

View File

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