mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 08:55:37 +00:00
22 lines
373 B
CMake
22 lines
373 B
CMake
|
set(EXAMPLES_STEM
|
||
|
exCompiledDoubleFunction
|
||
|
exDerivative
|
||
|
exDWT
|
||
|
exFit
|
||
|
exFitSample
|
||
|
exIntegrator
|
||
|
exInterp
|
||
|
exMat
|
||
|
exMathInterpreter
|
||
|
exMin
|
||
|
exPlot
|
||
|
exPValue
|
||
|
exRand
|
||
|
exRootFinder
|
||
|
exThreadPool)
|
||
|
|
||
|
foreach(_stem ${EXAMPLES_STEM})
|
||
|
add_executable(${_stem} ${_stem}.cpp)
|
||
|
target_link_libraries(${_stem} LatAnalyze)
|
||
|
endforeach()
|