The source code of the IDE is uploaded by at this site but i do not know how to use.
IDE的源代码是在这个站点上传的,但我不知道如何使用。
I came from programming in using IDE like netbeans and visual studio where you can just open the project(the code), edit, then COMPILE. I want to do the same for the source code of the IDE DEV C++, how do i do this?
我来自使用IDE的编程,如netbeans和visual studio,你可以在其中打开项目(代码),编辑,然后编译。我想对IDE DEV C ++的源代码做同样的事情,我该怎么做?
1 个解决方案
#1
0
Here's what I did:
这是我做的:
- After downloading and extracting the latest source, I looked into the Source folder
- I noticed the *.pas file extension, since I did work with Delphi before I new it was either Turbo Pascal or Delphi (if you don't know the extensions, there are many great search engines who can tell you what kind of file you are looking at)
- I opened the README.txt inside the Source folder, which tells me to compile Source\VLC\DevCpp.dpk. Again, I have worked with Delphi in the past, so I knew this is a project file (the extension means Delphi Package Project). *.dof is an older extension (Delphi 7 and older, the extension means Delphi Project Options File).
下载并解压缩最新的源代码后,我查看了Source文件夹
我注意到* .pas文件扩展名,因为我在使用Delphi之前使用的是Turbo Pascal或Delphi(如果你不知道扩展名,那么有很多很棒的搜索引擎可以告诉你你是什么类型的文件正在看)
我在Source文件夹中打开了README.txt,它告诉我编译Source \ VLC \ DevCpp.dpk。同样,我过去曾与Delphi合作过,所以我知道这是一个项目文件(扩展意味着Delphi Package Project)。 * .dof是较旧的扩展名(Delphi 7及更早版本,扩展名为Delphi项目选项文件)。
So, in short: Look at the file extensions and see if you can locate a README (or a similar named file) anywhere in the downloaded files. This should help you to figure out with what you are dealing and how you can open the project.
因此,简而言之:查看文件扩展名,看看是否可以在下载的文件中的任何位置找到README(或类似的命名文件)。这可以帮助您弄清楚您正在处理什么以及如何打开项目。
#1
0
Here's what I did:
这是我做的:
- After downloading and extracting the latest source, I looked into the Source folder
- I noticed the *.pas file extension, since I did work with Delphi before I new it was either Turbo Pascal or Delphi (if you don't know the extensions, there are many great search engines who can tell you what kind of file you are looking at)
- I opened the README.txt inside the Source folder, which tells me to compile Source\VLC\DevCpp.dpk. Again, I have worked with Delphi in the past, so I knew this is a project file (the extension means Delphi Package Project). *.dof is an older extension (Delphi 7 and older, the extension means Delphi Project Options File).
下载并解压缩最新的源代码后,我查看了Source文件夹
我注意到* .pas文件扩展名,因为我在使用Delphi之前使用的是Turbo Pascal或Delphi(如果你不知道扩展名,那么有很多很棒的搜索引擎可以告诉你你是什么类型的文件正在看)
我在Source文件夹中打开了README.txt,它告诉我编译Source \ VLC \ DevCpp.dpk。同样,我过去曾与Delphi合作过,所以我知道这是一个项目文件(扩展意味着Delphi Package Project)。 * .dof是较旧的扩展名(Delphi 7及更早版本,扩展名为Delphi项目选项文件)。
So, in short: Look at the file extensions and see if you can locate a README (or a similar named file) anywhere in the downloaded files. This should help you to figure out with what you are dealing and how you can open the project.
因此,简而言之:查看文件扩展名,看看是否可以在下载的文件中的任何位置找到README(或类似的命名文件)。这可以帮助您弄清楚您正在处理什么以及如何打开项目。