Artemia76 / CGServer

ChatGlobal server for Activeworlds Universe
GNU Lesser General Public License v2.1
0 stars 0 forks source link

CGServer

ChatGlobal server for Activeworlds Universe

  1. DEPENDENCIES

    • wxWidgets : >=3.0.0
    • ActiveWorlds SDK for linux
  2. Build on Linux

    1. UBUNTU, MINT On ubuntu enable support for 32 bit architecture :

      sudo dpkg --add-architecture i386
      sudo apt update
      sudo apt-get dist-upgrade

      On ubuntu you can enter this command line to install needed dependencies:

      sudo apt-get install build-essential libwxbase3.0-dev

      Install AW SDK lib in your local lib32 folder, for exemple on ubuntu/mint :

      ls /usr/local/lib/i386-linux-gnu
      >libaw_sdk.51.so.93
      sudo ldconfig
      ls /usr/local/lib/i386-linux-gnu
      >libaw_sdk.51.so  libaw_sdk.51.so.93

      Install AW SDK Include file Aw.h :

      ls /usr/local/include
      >Aw.h
    2. Final build:

      on git root :

      mkdir build
      cd build
      cmake .. -DAW_SDK=93 -DBUILD_32=ON
      make
      sudo make install
    3. Update

      repeat previous commands after git pull

    4. Configure coming ..

  3. Windows

    coming ...