如何在 Codelite 中包含 graphics.h?

How Do I include graphics.h in Codelite?

有没有办法在 Codelite 中包含 graphics.h 库? 我不想使用 CodeBlocks 或 Devc++。 我的大学项目需要它。 我知道如何将它包含在 CodeBlocks 和 Devc++ 中,但是当我使用我在 Codelite 中编写的旧代码时会出现很多错误。 screenshot_screenshot

有趣...这对我有用

我写了一个小程序

#include <graphics.h>
#include <stdio.h>
#include <conio.h>


int main()
{ 
   int x = 320, y = 240, radius;
 
   initgraph();
 
   for ( radius = 25; radius <= 125 ; radius = radius + 20)
      circle(x, y, radius);
 
   getch();
   return 0;
}

并编译。它在名为 'project' 的 Debug 文件夹中创建了一个二进制文件。当我 运行 双击它时,它不显示任何内容。所以

1) I opened cmd
2) dragged the binary into it.. It saved me the time to type the path myself
3) Pressed enter
4) Does not work the first time
5) Pressed a key to come back to prompt
6) Pressed up key to execute the binary again and pressed enter
7) Did step 6 on the other display and it worked !!!

我知道这不是解决方案,但仍然是一个起点....

编辑:我有一个双显示器,当我将 cmd 提示符带到一个显示器时,它可以工作,而在另一个显示器上则不起作用...可能与显示参数有关,但我不确定。 ..