Quick question:
A Uscript wiki describes opening the command prompt while in windows to execute the compiler...
How do I open the command prompt they refur to? In what program? I must be missing something pretty fundemental..
A Uscript wiki describes opening the command prompt while in windows to execute the compiler...
Save the file and get a command prompt up. Change the directory you are in until you are in the {Base Directory}/System directory. Once in the {Base Directory}/System directory enter the following command:
ucc make
This will run the compiler. It will list each package you have on your EditPackages=... lines in your UT ini file, but will only attempt to compile a package if its .u (or package file) is not there. In this case, because this is the first time we have built our mutator the package file MutHelloWorld.u doesn't exist.
ucc make
This will run the compiler. It will list each package you have on your EditPackages=... lines in your UT ini file, but will only attempt to compile a package if its .u (or package file) is not there. In this case, because this is the first time we have built our mutator the package file MutHelloWorld.u doesn't exist.
Comment