reorganize kiss into its own directory
This commit is contained in:
5
build-scripts/common-args.hxml
Normal file
5
build-scripts/common-args.hxml
Normal file
@@ -0,0 +1,5 @@
|
||||
-lib hscript
|
||||
-lib uuid
|
||||
-lib tink_macro
|
||||
-cp kiss/src
|
||||
-D analyzer-optimize
|
||||
3
build-scripts/common-test-args.hxml
Normal file
3
build-scripts/common-test-args.hxml
Normal file
@@ -0,0 +1,3 @@
|
||||
-lib utest
|
||||
-D test
|
||||
--main test.TestMain
|
||||
2
build-scripts/cpp/test-cpp.sh
Normal file
2
build-scripts/cpp/test-cpp.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
#! /bin/bash
|
||||
./bin/cpp/test/TestMain
|
||||
3
build-scripts/cpp/test.hxml
Normal file
3
build-scripts/cpp/test.hxml
Normal file
@@ -0,0 +1,3 @@
|
||||
-lib hxcpp
|
||||
-cpp bin/cpp/test
|
||||
-cmd bash kiss/build-scripts/cpp/test-cpp.sh
|
||||
1
build-scripts/interp/test.hxml
Normal file
1
build-scripts/interp/test.hxml
Normal file
@@ -0,0 +1 @@
|
||||
--interp
|
||||
2
build-scripts/js/test.hxml
Normal file
2
build-scripts/js/test.hxml
Normal file
@@ -0,0 +1,2 @@
|
||||
--js bin/js/test.js
|
||||
--cmd node bin/js/test.js
|
||||
3
build-scripts/nodejs/test.hxml
Normal file
3
build-scripts/nodejs/test.hxml
Normal file
@@ -0,0 +1,3 @@
|
||||
-lib hxnodejs
|
||||
--js bin/nodejs/test.js
|
||||
--cmd node bin/nodejs/test.js
|
||||
8
build-scripts/py/test-py.sh
Normal file
8
build-scripts/py/test-py.sh
Normal 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
|
||||
2
build-scripts/py/test.hxml
Normal file
2
build-scripts/py/test.hxml
Normal file
@@ -0,0 +1,2 @@
|
||||
--python bin/py/test.py
|
||||
--cmd bash kiss/build-scripts/py/test-py.sh
|
||||
Reference in New Issue
Block a user