Skip to content

Commit fce7515

Browse files
committed
Include native runtimes in portable setup
Copy runtimes/win-x64/native into the portable zip so SQLite and SimModel native dependencies ship with the portable package, mirroring the PK-Sim fix for the same issue (PK-Sim#3452).
1 parent 4c9b812 commit fce7515

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

rakefile.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@
5959
relative_src_dir = relative_src_dir_for(args.configuration)
6060

6161
copy_templates_files src_dir
62-
62+
63+
dst_dir = File.join(setup_temp_dir, 'runtimes', 'win-x64', 'native')
64+
FileUtils.mkdir_p(dst_dir)
65+
FileUtils.copy_entry File.join(src_dir, 'runtimes', 'win-x64', 'native'), dst_dir
66+
6367
#Files required for setup creation only and that will not be harvested automatically
6468
setup_files = [
6569
'Open Systems Pharmacology Suite License.pdf',

0 commit comments

Comments
 (0)