dc/src/CMakeLists.txt
Marco Cetica 89b7825885
All checks were successful
dc / build (push) Successful in 16s
Added new statistics class
2024-03-26 16:46:49 +01:00

25 lines
388 B
CMake

project(src)
set(HEADER_FILES
eval.h
macro.h
mathematics.h
statistics.h
bitwise.h
operation.h
stack.h
adt.h
)
set(SOURCE_FILES
eval.cpp
macro.cpp
mathematics.cpp
statistics.cpp
bitwise.cpp
stack.cpp
adt.cpp
)
add_library(src STATIC ${SOURCE_FILES} ${HEADER_FILES})