Created
June 22, 2011 07:14
-
-
Save svenstaro/1039630 to your computer and use it in GitHub Desktop.
minimal CMake example
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.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