mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-15 20:38:23 +01:00
18 lines
306 B
CMake
18 lines
306 B
CMake
# Create a list of files
|
|
set(bench_files
|
|
barite_200.R
|
|
)
|
|
|
|
set(runtime_files
|
|
barite_200_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) |