当前位置:网站首页>在Clion中使用EasyX配置
在Clion中使用EasyX配置
2022-06-29 09:56:00 【Shine.Zhang】
看到了一个小程序,一个小球串联C语言的语法知识,也多年没写C代码了,拿出来练练,但是遇到了在Clion中使用EasyX配置的问题,搞了好久,记一下。
下载地址:https://easyx.cn/easyx
选择如下下载渠道:
参考:https://blog.csdn.net/youjohLee/article/details/124642649
EasyX默认安装只支持vc++和visual studio,如果想用在Clion等IDE中使用,需要适配MinGW;
下载并解压上述文件easyx4mingw_20220610:
将该文件夹(此处我重命名为EasyX)复制进Clion新建的项目中,在CMakeLists.txt中添加:
include_directories(./EasyX/include)
link_directories(./EasyX/lib64)
link_libraries(libeasyx.a)
放置在add_executable之前。

新版本的Clion已经捆绑安装了mingw,默认使用;
运行以下范例程序:
#include <graphics.h> // 引用图形库头文件
#include <conio.h>
int main()
{
initgraph(640, 480); // 创建绘图窗口,大小为 640x480 像素
circle(200, 200, 100); // 画圆,圆心(200, 200),半径 100
_getch(); // 按任意键继续
closegraph(); // 关闭绘图窗口
return 0;
}

边栏推荐
- 这个mySQL安装的时候怎么搞去了?
- Given the values of two integer variables, the contents of the two values are exchanged (C language)
- The product strength is not inferior to that of BYD. Geely Dihao l Raytheon hi · x delivered 10000 units in the first month
- 任职 22 年,PowerShell 之父将从微软离职:曾因开发 PowerShell 被微软降级过
- PyTorch学习笔记(6)——DataLoader源代码剖析
- Daily question brushing record (VII)
- arcgis创建postgre企业级数据库
- 【NLP】文本生成专题1:基础知识
- 容器平台性能如何测试,稳定性、扩展效率、组件性能
- 企业竞争分析的几种方法:SWOT、波特五力、PEST「建议收藏」
猜你喜欢

Fully understand the MESI cache consistency protocol

Buuctf-- connotative software

Real test = "half product + Half development"?

30-year-old female, ordinary software testing Yuanyuan, confused and anxious about her career

【C语言进阶】通讯录实现

Real time value transfer from C form to another form

【评论送书】适合初学者的 6 个有趣的 R 语言项目

有了这款工具,自动化识别验证码再也不是问题

任职 22 年,PowerShell 之父将从微软离职:曾因开发 PowerShell 被微软降级过

《Datawhale推荐系统教程》来了!
随机推荐
《MongoDB入门教程》第02篇 MongoDB安装
“AI x 科学计算”进行时,华为昇思 MindSpore 赛题火热开启,等你来!
Please tell me about the Flink SQL batch task, two or more tables join (inner join or outer join
# 【OpenCV 例程200篇】214. 绘制椭圆的参数详解
zabbix监控mysql各项指标
打印9*9乘法口诀表(C语言)
AQS之Atomic详解
UserWarning: Usage of dash-separated ‘script-dir‘ will not be supported in future versions. 笔记
Analysis of reentrantlock source code of AQS
30岁,女,普通软件测试媛,对职业的迷茫和焦虑
Ikvm Net project progress
Mongodb tutorial Chapter 02 mongodb installation
AQS之ReentrantLock源码解析
SQL Server 数据库的连接查询
【Rust每周一库】Tokei - 统计代码行数等信息的实用工具
Cs231n-2022 module1: overview of key points of neural network (2)
flink sql cdc 并行度 会不会影响顺序呀,是不是数据同步的话一般只能设置1。
1- database understanding
给定两个整形变量的值,将两个值的内容进行交换 (C语言)
Free books! The best-selling book "Introduction and practice of OpenCV image processing" has been completed