mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
16 lines
307 B
Bash
Executable File
16 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. GetGlobals.sh
|
|
export PATH=$CXXTEST/bin:$PATH
|
|
|
|
# @main:
|
|
cxxtestgen --gui=X11Gui -o runner.cpp MyTestSuite2.h ../../sample/gui/GreenYellowRed.h
|
|
# @:main
|
|
|
|
# @compile:
|
|
/opt/local/bin/g++-mp-4.4 -o runner -I$CXXTEST runner.cpp -L/opt/local/lib -lX11
|
|
# @:compile
|
|
|
|
./runner
|
|
\rm -f runner runner.cpp
|