Files
integration/luprex
..
2023-02-14 14:05:45 -05:00
2023-02-14 14:05:45 -05:00
2023-02-14 14:05:45 -05:00
2023-02-14 14:05:45 -05:00
2023-02-14 14:05:45 -05:00
2023-02-14 14:05:45 -05:00

"# luprex"

Directory Structure:

cpp - C++ source code

cpp/core    - C++ source code for the engine proper
cpp/drv     - C++ source code for the driver
cpp/wrap    - C++ STL classes reconfigured to use eng-malloc

ext - external third-party libraries

ext/dlmalloc.c      - Doug Lea's malloc (used by eng-malloc)
ext/openssl         - Header files for our version of openssl
ext/openssl-linux   - Library files for openssl, compiled for linux
ext/openssl-mingw   - Library files for openssl, compiled for mingw
ext/eris-master     - The C code for the lua interpreter, eris lua.

obj - a place to store compiled C++ object code

obj/core  - Compiled from cpp/core
obj/drv   - Compiled from cpp/drv
obj/eris  - Compiled from ext/eris-master

lua - game code written in lua

misc - a place for tinkering, not part of the main project