You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
364 B
10 lines
364 B
#!/bin/bash
|
|
|
|
DEST=../src
|
|
OPTS='-i "../src/SARibbonBar" -i "../src/SARibbonBar/colorWidgets" -w "*.cpp;*.h;*.hpp" -s'
|
|
./Amalgamate.exe $OPTS ./amalgamate/SARibbonAmalgamTemplate.h $DEST/SARibbon.h
|
|
./Amalgamate.exe $OPTS ./amalgamate/SARibbonAmalgamTemplate.cpp $DEST/SARibbon.cpp
|
|
# 使用read命令达到类似bat中的pause命令效果
|
|
echo 按任意键继续
|
|
read -n 1
|
|
echo 继续运行 |