Skip to content

Commit

Permalink
First copy the files in the include dir
Browse files Browse the repository at this point in the history
  • Loading branch information
imorlxs committed Sep 17, 2024
1 parent 540bab0 commit 51f8c0b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/utils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ function(install_inside_build)
endif()

add_custom_target(copy_files_bdm ALL DEPENDS ${artifact_files_builddir})
add_dependencies(copy_files_bdm biodynamo)
add_dependencies(biodynamo copy_files_bdm)
endfunction()

# This function add a description to the packages which will be displayed
Expand Down
2 changes: 1 addition & 1 deletion demo/soma_clustering/src/soma_clustering.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ inline int Simulate(int argc, const char** argv) {
num_cells / 2, construct);

// Run simulation for N timesteps
const uint64_t timesteps = 1000;
const uint64_t timesteps = 30000;
if (timesteps < 6000) {
Log::Warning("SomaClustering",
"We recommend to run the simulation for roughly 6000 time "
Expand Down
3 changes: 3 additions & 0 deletions demo/soma_clustering/src/validation_criterion.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@

#include <vector>
#include "biodynamo.h"
#include <iostream>
#include <bits/std_function.h>
#include <cmath>
#include "core/agent/agent.h"
#include "core/container/math_array.h"
#include "core/real_t.h"
Expand Down

0 comments on commit 51f8c0b

Please sign in to comment.