blob: 213aafb7acb7c753e51ad38503bcaa49646bf0f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
add_library(MathFunctions)
target_sources(MathFunctions
PRIVATE
MathFunctions.cxx
PUBLIC
FILE_SET HEADERS
FILES
MathFunctions.h
)
# TODO2: Add a compile feature for C++20 support to MathFunctions
# TODO3: Add a conditional which checks TUTORIAL_USE_STD_SQRT and if
# ON, set a compile definition on MathFunctions of the same name
|