-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmove.x64.sh
More file actions
28 lines (22 loc) · 593 Bytes
/
move.x64.sh
File metadata and controls
28 lines (22 loc) · 593 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
echo "Start building up project, copying files ... "
buildup="./build/"
cmake="./out/build/x64-debug/"
com_cspro="bin/Debug/net6.0"
binFiles="./build/"
coreFiles="./build/Core"
mkdir $binFiles
mkdir $coreFiles
echo "Copying CS Dll Project:"
for i in "Algorithm.Interop"; do
echo " $i"
echo " cp ./$i/$com_cspro/$i.dll $binFiles"
cp ./$i/$com_cspro/$i.dll $binFiles
done
echo "Copying CMake Algorithm Project:"
for i in "Hash" "Math"; do
echo " $i"
echo " cp $cmake/$i/$i.dll $coreFiles"
cp $cmake/$i/$i.dll $coreFiles
done
sleep 3