├── .github └── workflows │ └── ci_cmake.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── chess.f ├── cmake ├── compilers.cmake ├── curses.cmake └── test_tictac.cmake ├── fireworks.c ├── meson.build ├── tests ├── loss.log └── tictac.log └── tictac.f /.github/workflows/ci_cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/.github/workflows/ci_cmake.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/README.md -------------------------------------------------------------------------------- /chess.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/chess.f -------------------------------------------------------------------------------- /cmake/compilers.cmake: -------------------------------------------------------------------------------- 1 | 2 | add_compile_options( 3 | "$<$:-std=legacy;-Werror=line-truncation>") 4 | -------------------------------------------------------------------------------- /cmake/curses.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/cmake/curses.cmake -------------------------------------------------------------------------------- /cmake/test_tictac.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/cmake/test_tictac.cmake -------------------------------------------------------------------------------- /fireworks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/fireworks.c -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/meson.build -------------------------------------------------------------------------------- /tests/loss.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/tests/loss.log -------------------------------------------------------------------------------- /tests/tictac.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/tests/tictac.log -------------------------------------------------------------------------------- /tictac.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fortran-gaming/toronto-fortran-games/HEAD/tictac.f --------------------------------------------------------------------------------