windows-dummy-toolchain.cmake 466 B

123456789101112131415
  1. # Fake CMake toolchain file, good enough to make cmake's initial
  2. # configuration think it's going to build for Windows, but not good
  3. # enough to actually do any building. The purpose is so that I can run
  4. # Puzzles's CMakeLists.txt in Windows mode as far as making
  5. # gamedesc.txt.
  6. set(CMAKE_SYSTEM_NAME Windows)
  7. set(CMAKE_C_COMPILER /bin/false)
  8. set(CMAKE_LINKER /bin/false)
  9. set(CMAKE_MT /bin/false)
  10. set(CMAKE_RC_COMPILER /bin/false)
  11. set(CMAKE_C_COMPILER_WORKS ON)