Thanks to visit codestin.com
Credit goes to github.com

Skip to content

gorciu-official/JUAMP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JUAMP - the living simulator

Latest Gorciu's project that simulates the life in colored console window.

Features:

  • talking with family
  • market hall
  • money system
  • hunger system
  • save system
  • parks

Building JUAMP

Use g++, because is cross-platform and does not suck on Windows (i'm watching errors on clang++ linker right now).

Linux building

Just install g++ from your distribution's package manager (if needed). Then you are good to run make.

Windows building

First of all, do not use Windows, but if you have to:

DO NOT USE mingw-32! IT IS AN ARCHAIC SOFTWARE AND CAUSES PROBLEMS WITH BUILDING JUAMP! Instead, use mingw-w64 from winlibs.com.

Here is how to check are you using mingw-32. Run this command:

g++ -dumpmachine

If your version looks like <random shit moment>-w64-mingw32 you are good to build JUAMP. If it prints mingw32, UPGRADE RIGHT NOW! Download mingw-w64 from winlibs.com, and add this to your path.

Then you are good to run python3 build.py.

Additional building tips

  1. You can use make instead of python3 build.py. It runs the Python script under the hood
  2. Building to MacOS/iOS/iPadOS/Android is currently not possible and the code is not optimized for supporting these platforms. I recommend you to don't even try to build for these operating systems, unless you want to do a complete refactor.
  3. Never compile with mingw-32, it'll cause problems with dependencies, so please - don't use it.