⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.cmake

📁 用Qt4编写的linux IDE开发环境
💻 CMAKE
字号:
    QDevelop - A Development Environment for Qt4    (C) 2006 Jean-Luc Biord <jlbiord@qtfr.org>Compiling using cmake~~~~~~~~~~~~~~~~~~~~~Since Version 0.20, it's possible to compile the application using cmake. Pleasenote that the official build tool for QDevelop is still qmake, and cmake it in early beta stage.The IDE cannot handle cmake projects yet, but this may change in the future.You need to use cmake version 2.4.3 (2.4.0 and above shuold work, but only 2.4.3and above have been tested). The compilation was tested under Linux, and on Win32the compilation does work, but QDevelop loads up with a console window.To build QDevelop, we need to create a new subdirectory to build off source, we callcmake, and the finally make:	mkdir cbuild	cd cbuild	cmake -G "MinGW Makefiles" ../	make	Why using cmake?~~~~~~~~~~~~~~~~Quite frankly, qmake is nice, but it's a toy. You cannot set dependencies,you cannot make conditional compile time switches (or at lest not in an automated way, when packaging for example). Using cmake, you also have a percentage which displays how much the compilation is going on. The output is MUCH nicer: by default you do not see the "gcc -c ..." messages, instead you see nice messages saying that the file is being compiled (in color!).- diego - diegoiast@gmail.com

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -