Code Monkey home page Code Monkey logo

Comments (3)

iotang avatar iotang commented on June 14, 2024
void AdvancedCompilerSettingsDialog::selectCompilerLocation()
{
#ifdef Q_OS_WIN32
	QString location = QFileDialog::getOpenFileName(this, tr("Select Compiler\'s Location"),
	                   QDir::rootPath(), tr("Executable files (*.exe)"));
#endif

#ifdef Q_OS_LINUX
	QString location = QFileDialog::getOpenFileName(this, tr("Select Compiler\'s Location"),
	                   QDir::rootPath(), tr("Executable files (*.*)"));
#endif

	if (! location.isEmpty())
	{
		location = location.replace('/', QDir::separator());
		ui->compilerLocation->setText(location);
	}
}

mac 既不是 Win32 也不是 Linux,然后就没定义 location。
我这里没有 mac 环境,能不能把所有的类似于这样的位置都改成

#ifdef Q_OS_WIN32
	QString location = QFileDialog::getOpenFileName(this, tr("Select Compiler\'s Location"),
	                   QDir::rootPath(), tr("Executable files (*.exe)"));
#else // <-- CHANGED
	QString location = QFileDialog::getOpenFileName(this, tr("Select Compiler\'s Location"),
	                   QDir::rootPath(), tr("Executable files (*.*)"));
#endif

再试一下?

(还有,mac 下可执行文件一般叫什么名字啊?)

from project_lemonlime.

hkr04 avatar hkr04 commented on June 14, 2024

把所有的#indef Q_OS_LINUX改成#indef Q_OS_MAC就可以了

from project_lemonlime.

hkr04 avatar hkr04 commented on June 14, 2024

把所有的#indef Q_OS_LINUX改成#indef Q_OS_MAC就可以了

参考博客:https://blog.csdn.net/huzecong/article/details/9422843
已在mac上将LemonPlus和LemonLime改造成功

from project_lemonlime.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.