Something must have gone wrong, neither folders have anything in them.
Very strange that OpenXcom/build is empty. The
cmake -DCMAKE_BUILD_TYPE=Release .. command should have left at least something there. Was there any output?
Besides, my buildbots don't use Cmake, they essentially do:
cd OpenXcom/src
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
make -j 8 -f Makefile.simple
The
PKG_CONFIG_PATH is needed since OpenXcom doesn't work with
libyaml-cpp version 0.5.2, so you need to get version 0.5.3 from
https://github.com/jbeder/yaml-cpp/releases/tag/release-0.5.3, install its build dependencies -
libboost-dev package, build and install it under
/usr/local prefix. (And preferably also uninstall
libyaml-cpp-dev package).
Then you can run the above commands and it'll put the binary in
OpenXcom/bin.