JUDGER_AND_CLIENT/JuderUI/config.xml

63 lines
2.8 KiB
XML
Raw Normal View History

2024-05-09 22:02:18 +08:00
<?xml version="1.0" encoding="utf-8"?>
<languages>
2025-02-10 23:21:07 +08:00
<language id="C++" alias="c++,cpp,CPP">
2024-05-09 22:02:18 +08:00
<compiler name="MSVC">
2025-02-10 23:21:07 +08:00
<path>.\MSVC</path>
2024-05-09 22:02:18 +08:00
<compileCmd>$compilerPath$/bin/cl.exe /O2 /Fo"$objFile$" /Fe"$exeFile$" /I $compilerPath$\include /EHsc "$sourceFile$" /link /LIBPATH:"$compilerPath$\lib" </compileCmd>
<!-- g++.exe -Wall -g -std=c++14 -c D:\prog_old\test\main.cpp -o obj\Debug\main.o-->
2024-05-09 22:02:18 +08:00
<linkCmd></linkCmd>
<!-- <linkCmd>$compilerPath$/bin/link.exe /OUT:"$exeFile$" "$objFile$" /LIBPATH:"$compilerPath$\lib"</linkCmd> -->
<!-- g++.exe -o bin\Debug\test.exe obj\Debug\main.o -O1-->
2024-05-09 22:02:18 +08:00
<runCmd>$exeFile$</runCmd>
</compiler>
2024-05-09 22:02:18 +08:00
<compiler name="MinGW">
2025-02-10 23:21:07 +08:00
<path>.\MinGW64\bin</path>
<compileCmd>"$compilerPath$\g++" -std=c++1y "$sourceFile$" -o "$exeFile$"</compileCmd>
<!-- g++.exe -Wall -g -std=c++14 -c D:\prog_old\test\main.cpp -o obj\Debug\main.o-->
2025-02-10 23:21:07 +08:00
<linkCmd></linkCmd>
<!-- g++.exe -o bin\Debug\test.exe obj\Debug\main.o -O1-->
<runCmd>.\test\output\Main.exe</runCmd>
</compiler>
</language>
<language id="C" alias="c">
<compiler name="MSVC">
<path>.\MSVC</path>
<compileCmd>$compilerPath$/bin/cl.exe /O2 /Fo"$objFile$" /Fe"$exeFile$" /I $compilerPath$\include "$sourceFile$" /link /LIBPATH:"$compilerPath$\lib" </compileCmd>
<!-- g++.exe -Wall -g -std=c++14 -c D:\prog_old\test\main.cpp -o obj\Debug\main.o-->
<linkCmd></linkCmd>
<!-- <linkCmd>$compilerPath$/bin/link.exe /OUT:"$exeFile$" "$objFile$" /LIBPATH:"$compilerPath$\lib"</linkCmd> -->
<!-- g++.exe -o bin\Debug\test.exe obj\Debug\main.o -O1-->
2024-05-09 22:02:18 +08:00
<runCmd>$exeFile$</runCmd>
</compiler>
2025-02-10 23:21:07 +08:00
<compiler name="MinGW">
<path>.\MinGW64\bin</path>
<compileCmd>"$compilerPath$\gcc" -std=c11 "$sourceFile$" -o "$exeFile$"</compileCmd>
<!-- g++.exe -Wall -g -std=c++14 -c D:\prog_old\test\main.cpp -o obj\Debug\main.o-->
<linkCmd></linkCmd>
<!-- g++.exe -o bin\Debug\test.exe obj\Debug\main.o -O1-->
<runCmd>.\test\output\Main.exe</runCmd>
</compiler>
2024-05-09 22:02:18 +08:00
</language>
<language id="Java" alias="java,JAVA">
<compiler name="JDK8">
2025-02-10 23:21:07 +08:00
<path>.\jdk1.8.0_121\bin</path>
2024-05-09 22:02:18 +08:00
<compileCmd>"$compilerPath$/javac" $sourceFile$</compileCmd>
2025-02-10 23:21:07 +08:00
<linkCmd></linkCmd>
<!-- g++.exe -o bin\Debug\test.exe obj\Debug\main.o -O1-->
<runCmd>$exeFile$</runCmd>
</compiler>
2024-05-09 22:02:18 +08:00
</language>
<language id="Python" alias="python,PYTHON,py,PY">
2025-02-10 23:21:07 +08:00
<compiler name="Python 3.12">
<path>.\python3.12</path>
2024-05-09 22:02:18 +08:00
<compileCmd> </compileCmd>
<linkCmd> </linkCmd>
<runCmd>$compilerPath$/python "$sourceFile$"</runCmd>
</compiler>
</language>
</languages>