:-1: error: No rule to make target '../../Qt/qextserialport-1.2win-alpha/examples/qespta/main.cpp', needed by 'main.o'. Stop.
时间: 2023-10-16 09:09:50 浏览: 143
Hyperledger Fabric make: *** No rule to make target问题(一)
5星 · 资源好评率100%
这个错误通常表示Makefile中缺少了编译main.cpp的规则。你可以检查Makefile文件中是否包含了main.cpp的编译规则,或者在Makefile中添加以下规则:
```
main.o: ../../Qt/qextserialport-1.2win-alpha/examples/qespta/main.cpp
$(CC) $(CFLAGS) -c $< -o $@
```
其中,`$(CC)`是你使用的编译器,`$(CFLAGS)`是编译器的参数,`$<`表示依赖的源文件,`$@`表示生成的目标文件。你需要根据实际情况修改这些参数。
阅读全文