Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在嵌入式系统中构建一些包(我不需要 GUI)。它缺乏内存,所以没有GUI。但是,一些使用 cmake 的软件包。而cmake强迫我使用X11。我不需要QT。
当您cmake为构建配置的源树时,您是否尝试过使用:
cmake
./configure --no-qt-gui
. 这个对我有用。