Compare commits
No commits in common. "e0d93f7bccfc14131aef8a4ef71c364a9c8a9b76" and "917dbec7a150b531dc661371edea0f4d5046fd29" have entirely different histories.
e0d93f7bcc
...
917dbec7a1
2
.gitignore
vendored
2
.gitignore
vendored
@ -32,5 +32,3 @@
|
||||
*.out
|
||||
*.app
|
||||
|
||||
# Build directory
|
||||
build
|
||||
|
@ -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)
|
18
README.md
18
README.md
@ -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
|
||||
```
|
||||
|
@ -1 +0,0 @@
|
||||
add_subdirectory(arff)
|
@ -1,4 +0,0 @@
|
||||
add_executable(arff
|
||||
./main.cpp
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user