File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
- local qjs_dir = path .getabsolute (" ./runtime" )
2
- local runtime = " ../../src/Generator/Generators/QuickJS/Runtime"
1
+ local cppsharp_qjs_runtime = " ../../src/Generator/Generators/QuickJS/cppsharp_qjs_runtime"
3
2
4
3
workspace " qjs"
5
4
configurations { " debug" , " release" }
@@ -13,13 +12,13 @@ workspace "qjs"
13
12
files
14
13
{
15
14
" gen/**.cpp" ,
16
- runtime .. " /*.cpp" ,
17
- runtime .. " /*.c"
15
+ cppsharp_qjs_runtime .. " /*.cpp" ,
16
+ cppsharp_qjs_runtime .. " /*.c"
18
17
}
19
18
includedirs
20
19
{
21
- qjs_dir ,
22
- runtime ,
20
+ " runtime " ,
21
+ cppsharp_qjs_runtime ,
23
22
" .." ,
24
23
" ../../include"
25
24
}
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ configuration=debug
7
7
platform=x64
8
8
jsinterp=" $dir /runtime/build/qjs"
9
9
10
- if [ $CI = " true" ]; then
10
+ cd $dir
11
+
12
+ if [ " $CI " = " true" ]; then
11
13
red=" "
12
14
green=" "
13
15
reset=" "
28
30
echo " ${green} Building generated binding files${reset} "
29
31
premake=$rootdir /build/premake.sh
30
32
config=$configuration $premake --file=$dir /premake5.lua gmake
31
- make -C $dir /gen
33
+ verbose=true make -C $dir /gen
32
34
echo
33
35
34
36
echo " ${green} Executing JS tests with QuickJS${reset} "
You can’t perform that action at this time.
0 commit comments