- To build for Windows, any compiler can be used.
- To build for MS-DOS, use Borland C++.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.5) | |
project(snake) | |
add_executable(snake snake.cc) | |
find_package(tvision CONFIG) | |
target_link_libraries(snake tvision::tvision) |