9 lines
245 B
Bash
Executable File
9 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .
|
|
make install
|
|
|
|
INCLUDED_FILES="include/chaiscript/*.hpp include/chaiscript/dispatchkit/*.hpp include/chaiscript/language/*.hpp bin/chaiscript_eval"
|
|
|
|
zip -r chaiscript-1.0.zip $INCLUDED_FILES
|