mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
17 lines
235 B
Bash
17 lines
235 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
. GetGlobals.sh
|
||
|
|
||
|
export PATH=$CXXTEST/bin:$PATH
|
||
|
|
||
|
# @main:
|
||
|
cxxtestgen -f --error-printer -o runner.cpp MyTestSuite4.h
|
||
|
# @:main
|
||
|
|
||
|
# @compile:
|
||
|
g++ -o runner -I$CXXTEST runner.cpp
|
||
|
# @:compile
|
||
|
|
||
|
./runner
|
||
|
\rm -f runner runner.cpp
|