-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
32 lines (28 loc) · 1.04 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
cmake_minimum_required(VERSION 3.13)
project(mathS)
set(SHARED OFF)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
add_compile_options("$<$<C_COMPILER_ID:MSVC>:/utf-8>")
add_compile_options("$<$<CXX_COMPILER_ID:MSVC>:/utf-8>")
include_directories(
mathS/include
)
AUX_SOURCE_DIRECTORY(mathS/src DIR_SRCS)
add_executable(mathS mathS/include/LBAssembler.h mathS/include/MathObject.h mathS/include/MathParser.h
mathS/include/NMathObject.h
mathS/include/Rule.h
mathS/include/RuleLib.h
mathS/include/NFunction.h
mathS/include/NFunctionalOperator.h
mathS/include/ExtendedCMath.h
mathS/include/Compute.h
mathS/src/LBAssembler.cpp mathS/src/MathObject.cpp mathS/src/MathParser.cpp
mathS/src/NMathObject.cpp
mathS/src/NFunction.cpp
mathS/src/ExtendedCMath.cpp
mathS/src/Rule.cpp
mathS/src/RuleLib.cpp
mathS/src/Compute.cpp
mathS/src/NFunctionalOperator.cpp
mathS/src/main.cpp mathS/src/lexer.cpp mathS/include/lexer.h)