2024-07-17 21:38:27 -04:00
|
|
|
build:
|
2024-07-18 03:56:02 -04:00
|
|
|
dotnet build -c Release
|
2024-07-19 03:59:19 -04:00
|
|
|
make -C speech2 CONFIG=Release -j$(nproc)
|
2024-07-18 05:05:35 -04:00
|
|
|
cp speech2/bin/x86/Release/speech2.dll SAPIServer/bin/Release/net40/windows-x86
|
2024-07-19 07:45:18 -04:00
|
|
|
cp speech2/bin/x86/Release/speech2.pdb SAPIServer/bin/Release/net40/windows-x86
|
2024-07-18 05:05:35 -04:00
|
|
|
|
2024-07-18 03:56:02 -04:00
|
|
|
build-debug:
|
|
|
|
dotnet build -c Debug
|
2024-07-19 07:45:18 -04:00
|
|
|
make -C speech2 CONFIG=Debug -j$(nproc)
|
|
|
|
cp speech2/bin/x86/Debug/speech2.dll SAPIServer/bin/Debug/net40/windows-x86
|
|
|
|
cp speech2/bin/x86/Debug/speech2.pdb SAPIServer/bin/Debug/net40/windows-x86
|
2024-07-18 05:05:35 -04:00
|
|
|
|
2024-07-17 21:38:27 -04:00
|
|
|
clean:
|
|
|
|
rm -rf SAPIServer/bin SAPIServer/obj
|
|
|
|
make -C speech2 clean
|
2024-07-18 03:54:12 -04:00
|
|
|
|
|
|
|
|
|
|
|
format:
|
|
|
|
cd SAPIServer; for f in *.cs; do clang-format -i $f; done; cd ..;
|