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