codeblocks下,怎样建立工程,进行多文件编译?如下是书上的两个文件。
https://ask.csdn.net/questions/204326
codeblocks创建静态库并使用
https://www.xuebuyuan.com/1421216.html
codeblocks 下 添加动态链接库
https://blog.csdn.net/xd_122/article/details/40866185
自定义快捷键
sudo apt-get install codeblocks-contrib
codeblocks窗口自动隐藏
http://tieba.baidu.com/p/2746227994
============================================
实战
创建自己的workspace
create new project =>category =>Fortran =>Fortran application
add files => shapelib_test.f90
Build 出现错误
最终在这几个地方进行了设置
settings=>complier=>linker settings=>libraries=>add 把要链接的库放到路径里面
project=>build options=>linker settings=>link linraries =>add 把要链接的库放到路径里面;search directories=>add 把要链接的库放到路径里面
说明:不知道最终是调整了哪个选项,最终是都设置了一遍就成功了。