File tree Expand file tree Collapse file tree 7 files changed +7
-8
lines changed Expand file tree Collapse file tree 7 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 2323 <GlobalTargetFramework >$(TargetFramework)</GlobalTargetFramework >
2424 <BaseIntermediateOutputPath >$(ObjDir)$(MSBuildProjectName)\</BaseIntermediateOutputPath >
2525 <BaseOutputPath >$(RootDir)bin\</BaseOutputPath >
26- <OutputPath >$(BaseOutputPath)$(Configuration)_$(PlatformTarget) \</OutputPath >
26+ <OutputPath >$(BaseOutputPath)$(Configuration)\</OutputPath >
2727 <ActionDir >$(BuildDir)$(PremakeAction)\</ActionDir >
2828 <NativeProjectsDir >$(ActionDir)projects\</NativeProjectsDir >
2929 <PackageDir >$(RootDir)artifacts\package\</PackageDir >
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ bindir = path.join(rootdir, "bin")
5959objsdir = path .join (builddir , " obj" );
6060gendir = path .join (builddir , " gen" );
6161actionbuilddir = path .join (builddir , _ACTION == " gmake2" and " gmake" or (_ACTION and _ACTION or " " ));
62- bindircfg = path .join (bindir , " %{cfg.buildcfg}_%{cfg.platform} " );
62+ bindircfg = path .join (bindir , " %{cfg.buildcfg}" );
6363prjobjdir = path .join (objsdir , " %{prj.name}" , " %{cfg.buildcfg}" )
6464
6565msvc_buildflags = { " /MP" , " /wd4267" }
Original file line number Diff line number Diff line change 9999
100100test ()
101101{
102- dotnet test {" $bindir /${configuration} _ $platform " ," $gendir " /* }/* .Tests* .dll --nologo
102+ dotnet test {" $bindir /${configuration} " ," $gendir " /* }/* .Tests* .dll --nologo
103103}
104104
105105clean ()
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ generate=true
3030
3131if [ $generate = true ]; then
3232 echo " ${green} Generating bindings${reset} "
33- dotnet $rootdir /bin/${dotnet_configuration} _ ${platform} /CppSharp.CLI.dll \
33+ dotnet $rootdir /bin/${dotnet_configuration} /CppSharp.CLI.dll \
3434 --gen=emscripten --platform=emscripten --arch=wasm32 \
3535 -I$dir /.. -I$rootdir /include -o $dir /gen -m tests $dir /../* .h
3636fi
Original file line number Diff line number Diff line change 1616fi
1717
1818echo " ${green} Generating bindings${reset} "
19- dotnet $rootdir /bin/${configuration} _ ${platform} /CppSharp.CLI.dll \
19+ dotnet $rootdir /bin/${configuration} /CppSharp.CLI.dll \
2020 --gen=napi -I$dir /.. -o $dir /gen -m tests $dir /../* .h
2121
2222echo " ${green} Building generated binding files${reset} "
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ dir=$(cd "$(dirname "$0")"; pwd)
44rootdir=" $dir /../.."
55dotnet_configuration=Release
66configuration=debug
7- platform=x64
87jsinterp=" $dir /runtime/build/qjs"
98
109cd $dir
@@ -23,7 +22,7 @@ generate=true
2322
2423if [ $generate = true ]; then
2524 echo " ${green} Generating bindings${reset} "
26- dotnet $rootdir /bin/${dotnet_configuration} _ ${platform} /CppSharp.CLI.dll \
25+ dotnet $rootdir /bin/${dotnet_configuration} /CppSharp.CLI.dll \
2726 $dir /bindings.lua
2827fi
2928
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ generate=true
2121
2222if [ $generate = true ]; then
2323 echo " ${green} Generating bindings${reset} "
24- dotnet $rootdir /bin/${dotnet_configuration} _ ${platform} /CppSharp.CLI.dll \
24+ dotnet $rootdir /bin/${dotnet_configuration} /CppSharp.CLI.dll \
2525 --gen=ts -I$dir /.. -I$rootdir /include -o $dir /gen -m tests $dir /../* .h
2626fi
2727
You can’t perform that action at this time.
0 commit comments