mirror of
https://github.com/ArashPartow/exprtk.git
synced 2025-06-22 16:28:57 +00:00
Add ExprTk_BUILD_BENCHMARKS to build benchmarks
Also move benchmarks into an benchmarks folder
This commit is contained in:
@ -55,3 +55,10 @@ option(ExprTk_BUILD_EXAMPLES "Build ExprTk examples" ON)
|
||||
if (ExprTk_BUILD_EXAMPLES)
|
||||
add_subdirectory(examples)
|
||||
endif ()
|
||||
|
||||
# create an ExprTK option for building benchmarks
|
||||
option(ExprTk_BUILD_BENCHMARKS "Build ExprTk benchmarks" ON)
|
||||
# if ExprTk_BUILD_BENCHMARKS is set to ON, then build the benchmarks
|
||||
if (ExprTk_BUILD_BENCHMARKS)
|
||||
add_subdirectory(benchmarks)
|
||||
endif ()
|
||||
|
Reference in New Issue
Block a user