mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-15 12:28:22 +01:00
20 lines
343 B
CMake
20 lines
343 B
CMake
# Create a list of files
|
|
set(bench_files
|
|
barite_200.R
|
|
barite_het.R
|
|
)
|
|
|
|
set(runtime_files
|
|
barite_200_rt.R
|
|
barite_het_rt.R
|
|
)
|
|
|
|
# add_custom_target(barite_bench DEPENDS ${bench_files} ${runtime_files})
|
|
|
|
ADD_BENCH_TARGET(barite_bench
|
|
bench_files
|
|
runtime_files
|
|
"barite"
|
|
)
|
|
|
|
add_dependencies(${BENCHTARGET} barite_bench) |