12 lines
218 B
CMake
12 lines
218 B
CMake
cmake_minimum_required(VERSION 3.28)
|
|
project(1)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
add_executable(1 main.cpp
|
|
Utils.cpp
|
|
Utils.h
|
|
Classifier.cpp
|
|
Classifier.h
|
|
Parser.cpp
|
|
Parser.h)
|