14 lines
242 B
CMake
14 lines
242 B
CMake
cmake_minimum_required(VERSION 3.29)
|
|
project(DataStruct)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
include_directories(include)
|
|
|
|
add_executable(DataStruct
|
|
main.cpp
|
|
src/RedBlackTree.cpp
|
|
src/HeapSort.cpp
|
|
include/HeapSort.h
|
|
)
|