摘要: 包装一个菜单类,用来构造菜单 void menu::on_menu_clicked() { QAction *act = qobject_cast<QAction *>( this->sender() ); if( act ) { int index = act->property("menu_ac 阅读全文
posted @ 2020-08-26 17:27 sgggr 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 简单来说,make 是编译,make install 是安装。 总结:linux编译安装中configure、make和make install各自的作用 ./configure是用来检测你的安装平台的目标特征的。比如它会检测你是不是有CC或GCC,并不是需要CC或GCC,它是个shell脚本。 m 阅读全文
posted @ 2020-08-26 15:15 sgggr 阅读(435) 评论(0) 推荐(0) 编辑