我正在尝试运行 build compton-conf 但它告诉我“没有指定目标,也没有找到 makefile。停止。”

我正在尝试运行 build compton-conf 但它告诉我“没有指定目标,也没有找到 makefile。停止。”

我正在尝试建立康普顿会议,但我一直在标题中看到这一点。我正在运行 Arch Linux。

我是 Linux 新手,但在没有遇到任何错误之前我构建了几个程序。

ls进入目录给我:

[abdullah@abdullah ~]$ cd compton-conf
[abdullah@abdullah compton-conf]$ make
make: *** No targets specified and no makefile found.  Stop.
[abdullah@abdullah compton-conf]$ ls
AUTHORS    CMakeLists.txt    compton-conf.desktop.in  COPYING         maindialog.ui
autostart  compton-conf      compton.conf.example     maindialog.cpp  README.md
CHANGELOG  compton-conf.cpp  compton-conf.h           maindialog.h    translations
[abdullah@abdullah compton-conf]$ scrot -u

答案1

该项目基于cmake构建工具。

您应该通过在当前项目目录中Makefile运行来生成之前。cmake

然后,你就可以运行了make

欲了解更多信息,请参阅人1 cmake

相关内容