nmake
-
Unser Prof hat jetzt am Semesteranfang verlangt, dass wir mit nmake arbeiten sollen bzw. unsere c++ code.
was ist das?
danke
-
nmake ist ein Programm das Buildscripts ausführt. Hilfe gibts dazu sicherlich in der MSDN.
-
#include <iostream>
using namespace std;int main()
{cout<<"hallo"<<endl;
return 0;}
Wie kann ich es mit nmake ausführen?
Danke