reorganize kiss into its own directory

This commit is contained in:
2020-12-05 18:35:09 -07:00
commit b440f0f07c
30 changed files with 2430 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
-lib hscript
-lib uuid
-lib tink_macro
-cp kiss/src
-D analyzer-optimize

View File

@@ -0,0 +1,3 @@
-lib utest
-D test
--main test.TestMain

View File

@@ -0,0 +1,2 @@
#! /bin/bash
./bin/cpp/test/TestMain

View File

@@ -0,0 +1,3 @@
-lib hxcpp
-cpp bin/cpp/test
-cmd bash kiss/build-scripts/cpp/test-cpp.sh

View File

@@ -0,0 +1 @@
--interp

View File

@@ -0,0 +1,2 @@
--js bin/js/test.js
--cmd node bin/js/test.js

View File

@@ -0,0 +1,3 @@
-lib hxnodejs
--js bin/nodejs/test.js
--cmd node bin/nodejs/test.js

View File

@@ -0,0 +1,8 @@
#! /bin/bash
# "python" is supposed to mean Python3 everywhere now, but not in practice
if [ ! -z "$(which python3)" ]; then
python3 bin/py/test.py
else
python bin/py/test.py
fi

View File

@@ -0,0 +1,2 @@
--python bin/py/test.py
--cmd bash kiss/build-scripts/py/test-py.sh