-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackBuildable.sh
More file actions
executable file
·39 lines (33 loc) · 889 Bytes
/
PackBuildable.sh
File metadata and controls
executable file
·39 lines (33 loc) · 889 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
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
################################################################################
### Packages all necessary binaries for a release. ###
################################################################################
packageName="MassivelyParallel_Build"
files=(
# General Files
# =============
"README.md"
"MassivelyParallel.sln"
"CopyDependencies.py"
"Common.props"
"CUDA_CL.props"
"Wrapper.props"
".editorconfig"
# Data
# ====
$(find Data -type f)
# Kernels
# =======
$(find Kernels -type f)
# Third Party dependencies
# ========================
$(find ThirdParty -type f -follow)
# Solution Projects
# =================
$(find CL_Wrapper -type f)
$(find Texture -type f)
$(find PrefixSum -type f)
$(find RadixSort -type f)
)
# Build the archive.
7z a -mx9 -t7z "$packageName" ${files[@]}