doc/changes.src: Update to include recent changes.
[nasm.git] / contrib / MSVC6.txt
blobce2375653183b613c1d4b871d0248e25a84958b7
1 Compilation with Nasm on MSVC 6.0, with usage of Custom Build step.
3 1) Open your project in MSVC.
5 2) Add .asm at the list of source files.
7 3) Click on it with the right button, further press Settings...
9 4) In General tab, flags "Always use custom build step" and "Exclude file
10    from build" should be disabled.
12 5) In "Custom Build" tab it is necessary to define "Commands" and "Outputs"
13    (By "Outputs" build system checks if it has reached a necessary result.
14     This parameter is mandatory and without it MSVC will not let you close
15     the window by OK button).
17    The "Commands" should be set to
19         nasmw.exe -fwin -o $(OUTDIR)\$(InputName).obj $(InputName).asm
21    And "Outputs" to
23         $(OUTDIR)\$(InputName).obj
25 Have fun!