-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.sh
More file actions
30 lines (26 loc) · 1.12 KB
/
test.sh
File metadata and controls
30 lines (26 loc) · 1.12 KB
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
#!/bin/bash
# ________ ________ ______ __ __ ______ ______
# /_______/\ /_______/\/_____/\ /_/\/_/\ /_____/\ /_____/\
# \::: _ \ \ \__.::._\/\:::_ \ \ \ \ \ \ \\:::_:\ \\:::_ \ \
# \::(_) \ \ \::\ \ \:(_) ) )_\:\_\ \ \ /_\:\ \\:\ \ \ \
# \:: __ \ \ _\::\ \__\: __ `\ \\::::_\/ \::_:\ \\:\ \ \ \
# \:.\ \ \ \/__\::\__/\\ \ `\ \ \ \::\ \ /___\:\ '\:\/.:||
# \__\/\__\/\________\/ \_\/ \_\/ \__\/ \______/ \_____/
#
# Copyright (c) 2015-18 Airy3D Inc.
# All rights reserved.
INSTALL_DIR=$SRC_DIR/install
info="----- CppSample: Test ----- \n"
info+=" + Envs:\n"
info+=" - SRC_DIR: $SRC_DIR\n"
info+=" - BUILD_TYPE: $BUILD_TYPE\n"
info+=" - BUILD_VERBOSITY: $BUILD_VERBOSITY\n"
info+=" - CMAKE_VERBOSITY: $CMAKE_VERBOSITY\n"
info+=" - CUDA_SM: $CUDA_SM\n"
info+=" - INSTALL_DIR: $INSTALL_DIR\n"
info+=" - COMPILER_DIR: $COMPILER_DIR\n"
info+=" - PROC_COUNT: $PROC_COUNT\n"
info+=" - CMAKE_MT: $CMAKE_MT\n"
info+=" - CMAKE_GENERATOR: $CMAKE_GENERATOR\n"
printf "%b" "$info"
$INSTALL_DIR/bin/CppSample