Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 256 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 256 Bytes

Compile jr3 DLL

On Windows, navigate to the jr3 subfolder from the command line and compile with g++

g++ -O -ansi -shared .\jr3_dll.cpp -o jr3.dll

or with warnings:

g++ -Wall -Wextra -O -ansi -pedantic -shared .\jr3_dll.cpp -o jr3.dll