This repository was archived by the owner on Oct 31, 2023. It is now read-only.

Description
I was trying to fix the CI build. I noticed that an error occurs in the .travis.yml file in the following lines:
- (mkdir rts/build_MC && cd rts/build_MC && cmake .. -DGAME_DIR=../game_MC && make)
- (mkdir rts/build_CF && cd rts/build_CF && cmake .. -DGAME_DIR=../game_CF && make)
- (mkdir rts/build_TD && cd rts/build_TD && cmake .. -DGAME_DIR=../game_TD && make)
The first line had a problem related to using the wrong Python executable, so I fixed it by pointing it towards what looks like the right executable inside the Travis container using -DPYTHON_EXECUTABLE=/opt/pyenv/shims/python.
The following two lines, however, are attempting to compile the contents of the build_CF and build_TD directories, which appear to have incomplete files. Can anyone tell me what these directories contain?