Skip to content

Instantly share code, notes, and snippets.

@svenstaro
Created June 22, 2011 07:14
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 svenstaro/1039630 to your computer and use it in GitHub Desktop.
Save svenstaro/1039630 to your computer and use it in GitHub Desktop.
minimal CMake example
cmake_minimum_required(VERSION 2.8.0)
project(example-project)
aux_source_directory(src/ sources)
include_directories(src/)
add_executable(example
${sources}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment