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