ubuntu16.04中安装Kdevelop和使用技巧

一、安装Kdevelop

step1:安装Kdevelop

sudo apt-get install kdevelop

step2:安装相应的cmake编译器

sudo apt-get install automake autoconf g++ libtool cmake

step3:打开Kdevelop,然后在Kdevelop图标处右键,选择Lock to Launcher即可把Kdevelop固定到图标栏。

二、编写一个简单的hello world程序

step1:新建工程

ubuntu16.04中安装Kdevelop和使用技巧_第1张图片

选择standard,Terminal,命名文件为hello_world,然后点击next

ubuntu16.04中安装Kdevelop和使用技巧_第2张图片

点击finish

ubuntu16.04中安装Kdevelop和使用技巧_第3张图片

保持默认配置,点击OK,注意build type为debug类型,即调试类型,release类型为发布类型

ubuntu16.04中安装Kdevelop和使用技巧_第4张图片

接下来会显示下面的画面,我们需要修改hello_world文件的CMakeLists.txt文件,设置为debug模式

ubuntu16.04中安装Kdevelop和使用技巧_第5张图片

添加一行代码在add_executable前

set(CMAKE_BUILD_TYPE "Debug")

修改后的结果如下:

ubuntu16.04中安装Kdevelop和使用技巧_第6张图片

 

编译(build),然后显示下图,最后运行(execute)即可

ubuntu16.04中安装Kdevelop和使用技巧_第7张图片

点击execute后,我们需要添加项目add new -> Compiled binary,选择executable中指定的hello_world执行文件,然后确定点击ok即可。再次点击executable就可以看到hello world的输出了。

ubuntu16.04中安装Kdevelop和使用技巧_第8张图片

点击hello_world,右键,点击Debug as -> Compiled binary,就可以看到hello world的输出结果了。

ubuntu16.04中安装Kdevelop和使用技巧_第9张图片

当然,如果我们点击Debug我们也是可以进入debug模式的,这样我们就可以对代码进行调试了。

 

Tips:当点击Execute按钮出现no valid executable specified的问题是,可以用下面的方法进行解决。

ubuntu16.04中安装Kdevelop和使用技巧_第10张图片

1、点击软件最上方的run -> ConfigureLaunches...

ubuntu16.04中安装Kdevelop和使用技巧_第11张图片

2.然后选择Executable:选择对应编译好的二进制运行文件(选择创建项目,build文件夹下的文件),然后点击ok.

ubuntu16.04中安装Kdevelop和使用技巧_第12张图片

3.点击executable运行,结果如下:

ubuntu16.04中安装Kdevelop和使用技巧_第13张图片

 

你可能感兴趣的:(教程)