1

Starting from the beginning !! can anybody here help me how to start running C project with MSVC ?

I have all the source files under:

src/ directory

all the header files under:

inc/ directory 

and few of the source under:

test/ directory

test directory contains makefile for the project

How can I use the same setup in MSVC for compilation and debugging ?

4

1 回答 1

2

从我的头顶,

  1. 创建一个工作区。确定您的应用程序是否是命令行、GUI、DLL 等。
  2. 创建一个项目(或多个项目,具体取决于您的应用程序的结构)。
  3. 将每个文件添加到相应的项目中。
  4. 设置编译器选项(如果有)。
  5. 编译并修复任何可移植性问题(例如编译器指令)。

关于您的 makefile,请查看有关cccl的Stack Overflow 答案

cccl 是 Microsoft Visual C++ 的 cl.exe 和 link.exe 的包装器。它将 Unix 编译器参数转换为 cl 和 link 可以理解的参数。

于 2013-04-23T11:31:07.643 回答