Skip to content

Instantly share code, notes, and snippets.

@sxlijin
Last active October 14, 2016 21:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sxlijin/65241dca95a18622fe944be33c43cba0 to your computer and use it in GitHub Desktop.
Save sxlijin/65241dca95a18622fe944be33c43cba0 to your computer and use it in GitHub Desktop.
Example CMakeLists.txt for CS3251 Assignment3a
cmake_minimum_required(VERSION 3.2)
project(3a)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall")
set(SOURCE_FILES
main.cpp)
add_executable(3a ${SOURCE_FILES})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment