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 2.6) | |
project(Game) | |
# Set the name of the final binary file | |
set(bin game) | |
# Tell CMake where to find the source files (and which to use) | |
# NOTICE: I am assuming you are like me and you put your source code | |
# in a src/ directory and your CMakeLists.txt file in the root directory | |
# of your project. |