Skip to content
This repository was archived by the owner on Jul 11, 2020. It is now read-only.

Build Instructions

mrfearless edited this page Sep 2, 2019 · 1 revision

The projects can be compiled with the RadASM IDE or manually with just the Masm32 SDK.

Requirements:

Building with RadASM IDE

  • Open up the RadASM project file (*.rap)
  • Select the menu option:
    • Make -> Compile RC
    • Make -> Assemble
    • Make -> Link
    • or Make -> Build to do all steps at once

Manual Build Instructions For IEex (IEex.exe)

  • Open a command prompt
  • Navigate to the appropriate projects folder
  • Enter the following commands, one at a time:
\MASM32\BIN\RC.EXE /v IEex.rc
\MASM32\BIN\ML.EXE /c /coff /Cp /nologo /I"\MASM32\INCLUDE" /LIBPATH:"\MASM32\LIB" IEex.asm
\MASM32\BIN\LINK.EXE /SUBSYSTEM:WINDOWS /RELEASE /VERSION:4.0 /LIBPATH:"\MASM32\LIB" /OUT:"IEex.exe" IEex.obj IEex.res

Manual Build Instructions For IEexDLL (IEex.dll)

  • Open a command prompt
  • Navigate to the appropriate projects folder
  • Enter the following commands, one at a time:
\MASM32\BIN\RC.EXE /v IEex.rc
\MASM32\BIN\ML.EXE /c /coff /Cp /nologo /I"\MASM32\INCLUDE" /LIBPATH:"\MASM32\LIB" IEex.asm
\MASM32\BIN\LINK.EXE /SUBSYSTEM:WINDOWS /RELEASE /DLL /VERSION:4.0 /LIBPATH:"\MASM32\LIB" /OUT:"IEex.dll" IEex.obj IEex.res

Clone this wiki locally