You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
echo "设置Qt调试环境变量..."
|
|
export QT_DEBUG_PLUGINS=1
|
|
echo "Qt调试模式已启用"
|
|
echo ""
|
|
echo "运行MagicWord应用程序..."
|
|
python src/main.py
|