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

Build Instructions

fearless edited this page Feb 15, 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 EEex (EEex.exe)

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

Manual Build Instructions For EEexDLL (EEex.dll)

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