Added CMake building for current and future of project
This commit is contained in:
parent
637cde0e97
commit
e0d93f7bcc
12
CMakeLists.txt
Normal file
12
CMakeLists.txt
Normal 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
1
src/CMakeLists.txt
Normal file
@ -0,0 +1 @@
|
||||
add_subdirectory(arff)
|
4
src/arff/CMakeLists.txt
Normal file
4
src/arff/CMakeLists.txt
Normal file
@ -0,0 +1,4 @@
|
||||
add_executable(arff
|
||||
./main.cpp
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user