tracktwo / xcomsave

46 stars 16 forks source link

Build instructions for Linux gone? #23

Open shaygover opened 2 years ago

shaygover commented 2 years ago

Just in case:

  1. cd xcomsave
  2. cmake .
  3. make

Then just use xcom2json and json2xcom. They'll be in the root folder

Checked and working on Arch.

tracktwo commented 2 years ago

Yeah I didn't add specific build instructions for any platform, but it's a good idea to add them. My preferred way is to build from a build directory, so the root doesn't get polluted with more files, but your way definitely works too.

cd xcomsave
mkdir build
cd build
cmake ..
make