mirror of
https://github.com/Doctorado-ML/bayesclass.git
synced 2025-08-16 08:05:57 +00:00
8 lines
168 B
CMake
8 lines
168 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
project(feature)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
|
|
add_executable(feature bayesclass/cpp/FeatureSelect.cpp)
|